Transpose command line into Perl Script
Posted: 2014-03-20T07:06:41-07:00
Hello,
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: - work great in command line with desired output
I tried with but I still get the PNG32. How can I make this happen?
Thank you
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