- extra concept index entries
authorTony Cook <tony@develop=help.com>
Mon, 9 Jan 2006 07:44:57 +0000 (07:44 +0000)
committerTony Cook <tony@develop=help.com>
Mon, 9 Jan 2006 07:44:57 +0000 (07:44 +0000)
- Imager::Draw - align_string()'s valign parameter was invalid in the
  synopsis

Changes
Imager.pm
lib/Imager/Draw.pod

diff --git a/Changes b/Changes
index e9dacdeed63ff93c6d348b8ce970d9460d462299..89d612a40cfffdf671c640406b35309ae7669e82 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1245,6 +1245,9 @@ Revision history for Perl extension Imager.
 0.47_01
 - set the locale to "C" properly when testing ft1.x error messages
 - don't destroy image before creating it in error handling in bmp.c
+- extra concept index entries
+- Imager::Draw - align_string()'s valign parameter was invalid in the 
+  synopsis
 
 =================================================================
 
index 3d002c4df741c337aae712075e5986e8c6b1dde1..5027a5e417e275e82f65c29162768d2042b77edd 100644 (file)
--- a/Imager.pm
+++ b/Imager.pm
@@ -3256,6 +3256,9 @@ animated GIF - L<Imager::File/"Writing an animated GIF">
 aspect ratio - L<Imager::ImageTypes/i_xres>,
 L<Imager::ImageTypes/i_yres>, L<Imager::ImageTypes/i_aspect_only>
 
+blend - alpha blending one image onto another
+L<Imager::Transformations/rubthrough>
+
 blur - L<Imager::Filters/guassian>, L<Imager::Filters/conv>
 
 boxes, drawing - L<Imager::Draw/box>
@@ -3346,6 +3349,9 @@ noise, filter - L<Imager::Filter/noise>
 noise, rendered - L<Imager::Filter/turbnoise>,
 L<Imager::Filter/radnoise>
 
+paste - L<Imager::Transformations/paste>,
+L<Imager::Transformations/rubthrough>
+
 pseudo-color image - L<Imager::ImageTypes/to_paletted>,
 L<Imager::ImageTypes/new>
 
index 8819306121316e63a2f6438069a1d74597d3a1bc..54faff55dd6371d194dad9863eb201982c46839e 100644 (file)
@@ -55,7 +55,7 @@ Imager::Draw - Draw primitives to images
   $img->align_string(x => $img->getwidth() - 1,
                      y => $img->getheight() - 1,
                      halign => 'right',
-                     valign => 'left',
+                     valign => 'bottom',
                      string => 'Imager',
                      font => $font,
                      size => 12);