http://qs1969.pair.com?node_id=311909


in reply to Re: perl script to convert .ppm image to .jpeg image
in thread perl script to convert .ppm image to .jpeg image

If ImageMagick is installed on Linux or Windows, try this...

my $command = 'convert name.ppm name.jpg';
system($command);