Index: textimage.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/textimage/textimage.module,v
retrieving revision 1.14
diff -u -r1.14 textimage.module
--- textimage.module	22 Jan 2007 14:10:34 -0000	1.14
+++ textimage.module	27 Mar 2007 06:56:01 -0000
@@ -866,7 +866,7 @@
 
 function textimage_text_to_image($text, $fontsize, $font, $foreground_color = '#000000', $background_color = NULL, $angle) {
   // Get exact dimensions of text string
-  $box = imageTTFBbox($fontsize, $angle, $font, $text);
+  $box = imageTTFBbox($fontsize, abs($angle), $font, $text);
   // Calculate text width and height
   $iw = abs($box[4] - $box[0]) + 4;
   $ih = abs($box[5] - $box[1]) + 4;
@@ -886,7 +886,9 @@
   // Create the text image
   list($r, $g, $b) = _textimage_hex2rgb($foreground_color);
   $fore = imagecolorallocate($img, $r, $g, $b);
-  imagettftext($img, $fontsize, $angle, 0, abs($box[5]), $fore, $font, $text);
+  $x_pivot = 0;
+  $y_pivot = $angle < 0 ? abs($box[7]) : abs($box[5]);
+  imagettftext($img, $fontsize, $angle, $x_pivot, $y_pivot, $fore, $font, $text);
   
   return $img;
 }
