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);
  • Comment on Re: Re: perl script to convert .ppm image to .jpeg image