Linux - SoftwareThis forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Hello
i am using fedora 6. can any body suggest how can i convert a image postscript file to a jpeg file?
which type of software do i need?
or any specific command etc. ?
please help me out
You can use gs (ghostscript). For example, if you have a postscript file called testpage-a4.ps, and want to make a jpg file with an image of the content of this file, you can do it with this command:
I add the -r to specify dpi resolution, and the papersize maintains the a4 proportions, otherwise I think it'll default to letter (8" by 11"). The dBATCH and dNOPAUSE are useful for doing batches of postscripts, so that gs doesn't wait for you to hit enter. This could be used in a script as follows:
Code:
for image in ./images/*; do
gs -sDEVICE=jpeg -r300 -sPAPERSIZE=a4 -dBATCH -dNOPAUSE \
"-sOutputFile=${image%.ps}.jpg" "$image"
done
edit: matthewg42, is there any advantage of specifying the - in gs and redirecting the postscript file using <, rather than just specifying it as an argument in the gs command?
edit: Matthew, is there any advantage of specifying the - in gs and redirecting the postscript file using <, rather than just specifying it as an argument in the gs command?
It just prevents "showpage, press <return> to continue" messages after each page, and stops the GS> prompt from appearing after the file is processed. It is just another way to accomplish what the -dBATCH -dNOPAUSE options do.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.