I'm using ImageMagick-6.6.8-6-Q16-windows-dll.exe
I have large JPEG images and wanted to batch resize to PNG:
Code: Select all
convert.exe -geometry 704x576! -quality 100 in.jpg png8:out.png
This is the error:
Googling around I found that I can define color format for IM PNG output, and thought to try that:**ERROR: [png2yuv.exe] mpegz: UNKNOWN COLOR FORMAT 3 in PNG transformation !
Code: Select all
convert.exe -geometry 704x576! -quality 100 in.jpg -define png:color-type=2 png8:out.png
Then I thought to ask fo helpMagick: unable to open image `color-type=2': No such file or directory @ error/blob.c/OpenBlob/2587.
Magick: unable to open file `color-type=2' @ error/png.c/ReadPNGImage/3054.
Thanks in advance