Trouble with 8-bit PNG output
Posted: 2011-03-23T17:32:07-07:00
Hi
I'm using ImageMagick-6.6.8-6-Q16-windows-dll.exe
I have large JPEG images and wanted to batch resize to PNG:
This command produces 8-bit PNG as I would expect, but I have problem when I try to pass this 8-bit PNG to png2yuv (from mjpegtools-1.9.0-mingw-bin.tar.bz2)
This is the error:
But this (and similar variations) gives me yet other error:
Thanks in advance
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