When I create an image, º becomes $. Actually a small $. (pratically
half-sized). Maybe it's a "s" with a tail. I really have never seen this
character before :-)

  An example:

$im = @ImageCreate (450, 500)
    or exit ("Cannot Initialize new GD image stream");
$background_color = ImageColorAllocate ($im, 255, 255, 255);
$text_color = ImageColorAllocate ($im, 0, 0, 0);
$horizonte = 465;
$vertical = 25;
$pasta = 'Pasta Nº: ';
ImageStringUp ($im, 5, $vertical, $horizonte,  $pasta, $text_color);
ImagePng ($im,'etiqueta.png');

  Outputs:

Pasta N$:

  Searched the manual/Google but haven't found any relevant information
about characters being replaced in GD...

  Any help is welcome, thanks
--

Julio Nobrega.



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to