Converting Multipage Tiff files into PDF files
-
Is there anyway which we can convert the multi page tiff files into pdf format in C#? I googled for quite sometime. Majority of the code uses a third party s/w which will be licensed for commercial use. Is there any free s/w that can be used in C# to convert the same? Or any open source tool for the same? Thanks
Success is the good fortune that comes from aspiration, desperation, perspiration and inspiration.
-
Is there anyway which we can convert the multi page tiff files into pdf format in C#? I googled for quite sometime. Majority of the code uses a third party s/w which will be licensed for commercial use. Is there any free s/w that can be used in C# to convert the same? Or any open source tool for the same? Thanks
Success is the good fortune that comes from aspiration, desperation, perspiration and inspiration.
I would suggest using [ItextSharp]. This open source on itext (java) based library, will provide you with the possibility to create a new pdf based on whatever images you want. Example to get you started [Itext-convert-tiff-to-PDF] Another thing you can use is ghostscript, but I think this can just be used from the commandline... Kraeven
-
I would suggest using [ItextSharp]. This open source on itext (java) based library, will provide you with the possibility to create a new pdf based on whatever images you want. Example to get you started [Itext-convert-tiff-to-PDF] Another thing you can use is ghostscript, but I think this can just be used from the commandline... Kraeven
Thank you for this. One of my java developer friend has already examined this. Some of the files are able to convert, but some are end up with error message saying that 'Byte array not a valid JPEG file'. One of our senior developer suggested that it may be because of JPEG-2000 issue, because of that some of the tiff files are not able to convert to PDF. However, I am able to view all the tiff files without any issues using FastStone Image viewer,converting to PDF at one short. But this will be a licensed one for commercial purposes. I want to know if there are any free versions or is it possible to achieve this somehow in dotnet. Thanks in advance meeram395.
Success is the good fortune that comes from aspiration, desperation, perspiration and inspiration.
-
Thank you for this. One of my java developer friend has already examined this. Some of the files are able to convert, but some are end up with error message saying that 'Byte array not a valid JPEG file'. One of our senior developer suggested that it may be because of JPEG-2000 issue, because of that some of the tiff files are not able to convert to PDF. However, I am able to view all the tiff files without any issues using FastStone Image viewer,converting to PDF at one short. But this will be a licensed one for commercial purposes. I want to know if there are any free versions or is it possible to achieve this somehow in dotnet. Thanks in advance meeram395.
Success is the good fortune that comes from aspiration, desperation, perspiration and inspiration.