Get Visible Signature from a PDF using PDFBox?
Is it possible to extract the visible signature (image of capture) of an signed PDF with the OSS libary PDFBox? Workflow: - list all signatures of a file - show with signatures include an visible signature - show which are valid - extract images of signatures (need to extract correct image for each signature) something in oop style like following would be awesome: PDFSignatures [] sigs = document.getPDFSignatures() sig[0].getCN() ... (Buffered)Image visibleSig = sig[0].getVisibleSignature() Found class PDSignature and how to sign a PDF, but not a solution to extract an visible signature as