Subject: | $image->string( string => "0", ... ) is a noop. |
We've had to add the following workaround in a string display routine to
get a string containing a single zero ("0") to display.
Also, passing in a chr( 0 ) seems to cause a premature end of string to
be found.
$text .= " " if length $text && !$text; ## Imager declines to
display "0"
$image->string(
color => \@color,
font => $font,
string => $text,
x => $self->get_x,
y => $self->get_y + $global_ascent,
);