I could not figure out how to transpose this into Perl syntax. The idea is that I have PNG32 images and I would need to convert them with the following settings to png8:
Code: Select all
my_image.png -colors 256 PNG8:my_image.png
I tried with
Code: Select all
$my_image->Set(depth => 8);
Thank you