Get the original content from a signed pdf
问题 I would like to know how I could get the original content from a signed pdf document using iText java library or another one. Thanks UPDATE 1: Possible example: PdfReader reader = new PdfReader(PATH_TO_PDF); AcroFields fields = reader.getAcroFields(); ArrayList<String> signatures = fields.getSignatureNames(); for (String signature : signatures) { // Start revision extraction ByteArrayOutputStream out = new ByteArrayOutputStream(); byte bb[] = new byte[8192]; InputStream ip = fields