[iText-questions] BarcodeDatamatrix

2007-09-21 Thread Peter Gershkovich
I am wondering you have any examples with Datamatrix barcode. I am able to generate a barcode with the following code: -- BarcodeDatamatrix datamatrixBarCode = new BarcodeDatamatrix(); datamatrixBarCode.setOptions(BarcodeDatamatrix.DM_AUTO); datamatrixBarCode.setHeight( 0

Re: [iText-questions] concatenating pdf documents

2007-07-06 Thread Peter Gershkovich
age++ ) { writer.addPage( writer.getImportedPage ( reader, page ) ); } If anyone has a better way let me know. Thanks. On Jul 6, 2007, at 9:25 AM, Peter Gershkovich wrote: What is the best way to concatenate several pdf files into one document considering that I am getting

[iText-questions] concatenating pdf documents

2007-07-06 Thread Peter Gershkovich
What is the best way to concatenate several pdf files into one document considering that I am getting pdf documents from a database: Blob report = resultSet2.getBlob( "PdfDocument" ); Then I get binary stream and read it to an output. Below are the details. I read in the book how one could com