I am having problems converting a postscript file generated by html2ps into an image,
The postscript file decodes perfectly when I open it on my system manually as a pdf conversion and is exactly as expected.
I have built and installed ImageMagick 6.3.1 from source on Mac OSX 10.4.8 as a universal binary.
I have used the following commandline:
/path/to/convert -page 600x840 -quality 85 -geometry 600x800 /path/to/ps/file/1_1.ps /path/to/output/file/1_1_100.jpg
I received the following commandline feedback:
sh: line 1: gs: command not found
sh: line 1: gs: command not found
convert: no decode delegate for this image format `/path/to/ps/file/1_1.ps'.
What do I need to install or amend, I did not use any configure options other than the -prefix and -exec-prefix values.
Have I forgotten to configure something?
I have also run
and part of the information returned was:identify -list format
PS PS rw+ PostScript
PS2* PS2 -w+ Level II PostScript
PS3* PS3 -w+ Level III PostScript
So I know the format is supported, or is html2ps writing ps2/3 data that is messing ImageMagick up?
Do I need Ghostscript to be installed? I intentionally did not install it as I'm preparing software for a minimally configured system!
I'm quite happy building in static linked libraries if needed, but what do I need to do to make progress?
Help, I'm stuck.
cheers
Biz