]> git.imager.perl.org - imager.git/blobdiff - Imager.pm
minor documentation clarification
[imager.git] / Imager.pm
index 1b811676cc154a38b0018b0cb9695f5eac9ac89f..19dab111a0547c173689562769c1200190cf86f0 100644 (file)
--- a/Imager.pm
+++ b/Imager.pm
@@ -3008,7 +3008,8 @@ parameter which can take the values C<h>, C<v>, C<vh> and C<hv>.
 
 =head2 Rotating images
 
-Use the rotate() method to rotate an image.
+Use the rotate() method to rotate an image.  This method will return a
+new, rotated image.
 
 To rotate by an exact amount in degrees or radians, use the 'degrees'
 or 'radians' parameter:
@@ -3016,6 +3017,9 @@ or 'radians' parameter:
   my $rot20 = $img->rotate(degrees=>20);
   my $rotpi4 = $img->rotate(radians=>3.14159265/4);
 
+Exact image rotation uses the same underlying transformation engine as
+the matrix_transform() method.
+
 To rotate in steps of 90 degrees, use the 'right' parameter:
 
   my $rotated = $img->rotate(right=>270);