Our company is currently evaluating the product whether it will cater to our needs.
Our requirements are as follows:
1) Convert TIFF file to PDF using JBIG2 Compression
2) Convert JPG file to PDF using JPEG2000 Compression
When I tried, I get an error message stating that the compression (Jpeg2000 and Jbig2) is not supported now.
Basing on the documentation provided, below is the code for converting TIFF to PDF (using JBIG2):
ImageCollection imageCollection = new ImageCollection();
imageCollection.Add(tiffFileName);
Below is the code for converting JPG to PDF (using JPEG2000):
ImageCollection imageCollection = new ImageCollection();
imageCollection.Add(jpgFileName);
Is there something I should be doing to make this work or is this feature only supported in future versions? Please note that I'm currently using version 7.0.1.1.
What files do you have in your output bin directory? I think you have only Vintasoft.Imaging.dll and Vintasoft.Pdf.dll.
Please add reference to Vintasoft.Imaging.Jbig2Codec.dll and Vintasoft.Imaging.Jpeg2000Codec.dll in your project or place these 2 files into your output bin directory.