Cannot convert eps to png

Post any defects you find in the released or beta versions of the ImageMagick software here. Include the ImageMagick version, OS, and any command-line required to reproduce the problem. Got a patch for a bug? Post it here.
Post Reply
jon_moore

Cannot convert eps to png

Post by jon_moore »

Hi,

Using ImageMagick-6.4.9-5-Q16-windows-dll version on Windows Vista 32 bit Home Premium. I also have GhostScript 8.63 installed and working.

If I try to convert an eps file to any other format I get an error message.

E.g. If I was trying to convert test.eps to test.png via:-

convert test.eps test.png

then I would get message:-

convert: missing an image filename 'test.png' @ convert.c/ConvertImageCommand/2766

Thanks for any help correcting this problem.

Jon
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: Cannot convert eps to png

Post by fmw42 »

Have you installed the libpng delegate?

check

convert -list configure

and look at the line DELEGATES. It should list png.

e.g. here is mine

DELEGATES bzlib fontconfig freetype gs jpeg jp2 lcms lqr openexr png tiff x11 xml zlib
jon_moore

Re: Cannot convert eps to png

Post by jon_moore »

Looks ok.

Output from that is:-


Path: C:\Program Files\ImageMagick-6.4.9-Q16\config\configure.xml

Name Value
-------------------------------------------------------------------------------
CC vs7
COPYRIGHT Copyright (C) 1999-2009 ImageMagick Studio LLC
DELEGATES bzlib freetype jpeg jp2 lcms png tiff x11 xml wmf zlib
HOST windows-unknown-linux-gnu
LIB_VERSION 0x649
LIB_VERSION_NUMBER 6,4,9,5
NAME ImageMagick
RELEASE_DATE 2009-03-01
VERSION 6.4.9
WEBSITE http://www.imagemagick.org

Path: configure.xml

Name Value
-------------------------------------------------------------------------------
CC vs7
COPYRIGHT Copyright (C) 1999-2009 ImageMagick Studio LLC
DELEGATES bzlib freetype jpeg jp2 lcms png tiff x11 xml wmf zlib
HOST windows-unknown-linux-gnu
LIB_VERSION 0x649
LIB_VERSION_NUMBER 6,4,9,5
NAME ImageMagick
RELEASE_DATE 2009-03-01
VERSION 6.4.9
WEBSITE http://www.imagemagick.org


Thanks Jon
User avatar
magick
Site Admin
Posts: 11064
Joined: 2003-05-31T11:32:55-07:00

Re: Cannot convert eps to png

Post by magick »

Post the output from this command:
  • convert -verbose test.eps test.png
Post Reply