Hi,
I'm trying to resize image for mplayer overlay usage. I'm using "convert -resize" from Imagemagick. My problem is that after resize image doesn't have the original color depth nor palette.
Code:
convert logo1.png -resize 200 PNG8:logo2.png
I'm able to resize image correctly if I manually set depth and type, but this is not working when I have to resize images with different palettes.
Code:
convert -depth 8 -type PaletteMatte logo1.png -resize 200 PNG8:logo2.png
Is there any CLI tool or specific convert option to resize image with keeping all the other image related setting as original?
Br,
-Timo-