The only thing that it comes to my mind..., previosly I have a copy of file with the next code in java:
... fisSource = new FileInputStream(_source); fosDestination = new FileOutputStream(_destination); byte[] buffer = new byte[1024]; int bytesRead; while ((bytesRead = fisSource.read(buffer)) != -1) fosDestination.write(buffer, 0, bytesRead); ... is possible that this code is corrupting the file's copy? Thanks -- View this message in context: http://itext-general.2136553.n4.nabble.com/Bug-in-pdfReader-tp3932966p3933244.html Sent from the iText - General mailing list archive at Nabble.com. ------------------------------------------------------------------------------ The demand for IT networking professionals continues to grow, and the demand for specialized networking skills is growing even more rapidly. Take a complimentary Learning@Cisco Self-Assessment and learn about Cisco certifications, training, and career opportunities. http://p.sf.net/sfu/cisco-dev2dev _______________________________________________ iText-questions mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/itext-questions iText(R) is a registered trademark of 1T3XT BVBA. Many questions posted to this list can (and will) be answered with a reference to the iText book: http://www.itextpdf.com/book/ Please check the keywords list before you ask for examples: http://itextpdf.com/themes/keywords.php
