in reply to Resizing images with transparent background?
#!/usr/bin/perl use strict; use warnings; use Image::Scale; my $img = Image::Scale->new('image.gif'); $img->resize_gd( { width => 150 } ); $img->save_png('newImage.png');
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: Resizing images with transparent background?
by aweizd (Initiate) on Oct 14, 2010 at 12:53 UTC |