in reply to How to resize picture in windows?

And there are Imager ppms that work on windows. And you can resize like this:
# Convert image from data in scalar my $img = Imager->new; $img->read(data=>$PixData, type=>'jpeg') or die "Cannot read: ", $img->errstr; my $thumb = $img->scale(scalefactor=>.3); $thumb->write(file=>"$0-t.jpg", type=>'jpeg') or die "Cannot write: ",$img->errstr;
Instead of 'data=>', you can use 'file=>' to read from a file.

I'm not really a human, but I play one on earth. flash japh