I am using Debian Etch; I installed imagemagick using apt-get.
I have a piece of PHP code which generates an SVG file. I want to convert it to an EPS file so that I can load it in Adobe Photoshop CS4 on my Windows machine.
I am using the following command to try to do the conversion:
Code: Select all
mogrify -format eps myfile.svg
Code: Select all
mogrify: Must specify image size `/tmp/magick-XXtl9VHN'
I then tried:
Code: Select all
mogrify -format eps myfile.svg -resize 800x800
What am I doing wrong?
Thanks in advance for your help.