convert() doesn't preserve sample size (#28492) (done)
-be explicit that scale*() doesn't modify the source (#28570)
+be explicit that scale*() doesn't modify the source (#28570) (done)
new color counting code (#28142)
$newimg = $img->scale(scalefactor=>0.25); 175x125
$newimg = $img->scale(); # 350x250
-if you want to create low quality previews of images you can pass
+If you want to create low quality previews of images you can pass
C<qtype=E<gt>'preview'> to scale and it will use nearest neighbor
sampling instead of filtering. It is much faster but also generates
worse looking images - especially if the original has a lot of sharp
my $scaled = $im->scale(xpixels => 200, ypixels => 200, type => 'nonprop');
-Returns the scaled image on success.
+Returns a new scaled image on success. The source image is not
+modified.
Returns false on failure, check the errstr() method for the reason for
failure.
=back
-Returns the scaled image on success.
+Returns a new scaled image on success. The source image is not
+modified.
Returns false on failure, check the errstr() method for the reason for
failure.
=back
-Returns the scaled image on success.
+Returns a new scaled image on success. The source image is not
+modified.
Returns false on failure, check the errstr() method for the reason for
failure.