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	31 Mar 2007 07:00:17 -0000
@@ -828,8 +828,8 @@
     $total_colors++;
   }
   
-  // Check that we're not in the middle of the image or in a blonk area
-  if ($total_alpha < (127 * $total_colors) && $total_alpha > 0) {
+  // Check that we're not in the middle of a solid area of the image
+  if ($total_alpha < (127 * $total_colors)) {
     // If we're on a semi-transparent pixel, blend the remaining amount with our border color
     if ($pixel['alpha'] < 127) {
       $alpha = 127 - $pixel['alpha'];
