Sathish
Sathish

Reputation: 1

Convert TIFF image file to .ps using C#/VB.net

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

Answers (1)

jgauffin
jgauffin

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

Related Questions