I'm having a missue with a convertion.
Using a simple QR code with a white background and a black QR code, I wan't to have ImageMagick to make the white color transparent.
To do so, I tried this:
/usr/bin/convert ./qr_original.png -transparent white ./qr_transparent.png
This convert command makes the black color transparent but preserves the white background.
But trying with a QR code with a background and a red/green/blue/whatever QR code, the convert command works fine - the red/green/blue/whatever QR code is preserved and the white background gets transparent.
How come? And how can I make this work correctly?