As a simple test in using NConvert to do this, I have a 32-bit PNG image which I wish to convert to BMP whilst preserving alpha/transparency. I tried the following, but when the BMP file is viewed the transparent area is no longer transparent. I would expect the following to work, but it doesn't:
Code: Select all
nconvert.exe -out bmp 32bit_png_image_with_alpha_transparency.png
Code: Select all
nconvert.exe -out webp 32bit_png_image_with_alpha_transparency.png
Same goes for when converting image to PNG, also whilst keeping alpha/transparency.
Ideally, I want one command which works for all input image files of different formats.
I was expecting this to be easy with NConvert, but either it's buggy, or I'm not using the correct command-line options.