PdfReader r = new PdfReader(...); AcroFields fields = r.getAcroFields(); // remove fields here r.removeUnusedObjects(); // use PdfStamper to output the result.
Paulo > -----Original Message----- > From: Jörg Winter [mailto:[email protected]] > Sent: Friday, July 24, 2009 12:08 PM > To: [email protected] > Subject: [iText-questions] PDF AcroFields removal.... > > Hi, > > Removing formfields _manually_ by AcrobatPro reduces the resulting > PDF-filesize ("Save As...") by expected amounts of bytes. > But doing this by iText API > > AcroFields fields = stamper.getAcroFields(); > HashMap fieldMap = fields.getFields(); > Iterator<String> fieldnames = new > HashSet(fieldMap.keySet()).iterator(); > while (fieldnames.hasNext()) > { > String fieldname = fieldnames.next(); > if (fieldname.startsWith("question")) > { > fields.removeField(fieldname); > etc... > > will NOT reduce filesize. > We need minimum filesize because of application-requirements. > > Thanks, > Joerg Aviso Legal: Esta mensagem é destinada exclusivamente ao destinatário. Pode conter informação confidencial ou legalmente protegida. A incorrecta transmissão desta mensagem não significa a perca de confidencialidade. Se esta mensagem for recebida por engano, por favor envie-a de volta para o remetente e apague-a do seu sistema de imediato. É proibido a qualquer pessoa que não o destinatário de usar, revelar ou distribuir qualquer parte desta mensagem. Disclaimer: This message is destined exclusively to the intended receiver. It may contain confidential or legally protected information. The incorrect transmission of this message does not mean the loss of its confidentiality. If this message is received by mistake, please send it back to the sender and delete it from your system immediately. It is forbidden to any person who is not the intended receiver to use, distribute or copy any part of this message. ------------------------------------------------------------------------------ _______________________________________________ iText-questions mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/itext-questions Buy the iText book: http://www.1t3xt.com/docs/book.php Check the site with examples before you ask questions: http://www.1t3xt.info/examples/ You can also search the keywords list: http://1t3xt.info/tutorials/keywords/
