IText Team,
Could you please assist us in resolving the  below issue. We are using 
ITextSharp dll to merge the PDF’s (these pdf’s are converted from RTF to PDF). 
When we merge its changing the version of PDF document to 1.5 pdf version, even 
though property is set to 1.3 version with X-1a conformance. 
Basically we need final Merged PDF document to be in X-1a format as per printer 
specification to print these merged PDF document. Please let us know what 
changes or setting we need to change to make sure we are getting PDF X-1a 
format 1.3version document after we merge these PDF’s. Any help in this regard 
is greatly appreciated.
Thanks a lot for your time and help.
Below is the sample code: Dim pdfDoc As iTextSharp.text.Document = Nothing
        Dim pdfWriter As iTextSharp.text.pdf.PdfCopy = Nothing
        Dim pdfVersion As iTextSharp.text.pdf.PdfName = 
iTextSharp.text.pdf.PdfWriter.PDF_VERSION_1_3
        'PDF/X-1a Standard need pdf Version 1.3 (so, do not change this)
  pdfDoc = New iTextSharp.text.Document(pdfReader.GetPageSizeWithRotation(1))
                    pdfWriter = New PdfCopy(pdfDoc, New 
System.IO.FileStream(PDFOutputFile, IO.FileMode.Create))
                    pdfWriter.SetPdfVersion(pdfVersion)
pdfWriter.SetFullCompression()
                    pdfWriter.PDFXConformance = 1
 
Thank You


      
------------------------------------------------------------------------------
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
_______________________________________________
iText-questions mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/itext-questions

Buy the iText book: http://www.itextpdf.com/book/
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/

Reply via email to