Reputation: 1
I need to find a way of converting TIFF image files to .ps files using C#/VB.NET. I treid using MODI (Microsoft Office Document Imaging) to generate .ps file, If I open a .ps file with word pad or any other editor I should be able to read this file. I tried to open the .PS file and its opening with some Characters which means it's an image file.
Are there any free methods or APIs to convert tiff to .ps?
Thanks Sathish
Upvotes: 0
Views: 1396
Reputation: 101150
Use ghostscript from a command line (Process.Start()
).
Ghostscript is for pdf -> tiff.
Use Imagemagick for TIFF to PDF conversions:
convert yourtiff.tif -density 72 yourpdf.pdf
Upvotes: 1