Velvet Star Monitor

Standout celebrity highlights with iconic style.

news

convert ps to pdf

Writer Mia Lopez

How do I convert *.ps file to a .pdf file? I tried several links given by google search, but either solution is really old and does not work for latest versions of ps and pdf files, or they do not make sense to me. Is there a simple utility to convert .ps file to .pdf file.

1

3 Answers

For a command-line solution: install the 'ghostscript' package:

sudo apt-get install ghostscript

and use the ps2pdf utility:

ps2pdf myfile.ps myfile.pdf

easy!

3

Try to download and install GIMP once you are done open your.PS file with it and then go to save us and go to the drop down menu where you can choose the type of the file.. The pdf should be there, save it and it should work just fine.

3

Not on Ubuntu right now but try this.

If your post script file is called "test.ps"

gs -sDEVICE=pdfwrite -sOutputFile=test.pdf -dBATCH -dNOPAUSE test.ps

the non-self-explanatory flags are -dBATCH which avoids going into interactive mode and -dNOPAUSE which suppresses pausing after each page.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy