ID: 27693 User updated by: xavier dot blanchet at free dot fr Reported By: xavier dot blanchet at free dot fr -Status: Feedback +Status: Open Bug Type: GD related Operating System: Linux PHP Version: 4.3.4 New Comment:
I was hoping PHP 4.3.5 would resolve the bug, but as I tried the same script on PHP Version 5.0.0b2 Beta ( http://240plan.ovh.net/test.beta ) and faced the same problem, i did not believe in a PHP version 4.3.5 working fine with ttf fonts... According to Sandeep, I was right :-( Previous Comments: ------------------------------------------------------------------------ [2004-04-01 07:23:27] sandeep at highimpactsites dot com i m facing the same problem. Text are shown in yellow color even if we have assign the black color. and text dosen't appear on image using ImageTTFText function. It is working fine on PHP Version 4.3.2 & GD Version bundled (2.0.12 compatible) but facing above mention problem with PHP Version 4.3.5 & GD Version 2.0 or higher Also with PHP Version 4.3.5 & GD Version bundled (2.0.17 compatible). ------------------------------------------------------------------------ [2004-03-26 15:01:57] [EMAIL PROTECTED] Works fine with latest CVS. ------------------------------------------------------------------------ [2004-03-25 08:49:36] xavier dot blanchet at free dot fr Description: ------------ When we use the imagecreatetruecolor() function, the imagettftext() and a TrueTypeFont with such a phpinfo(): http://240plan.ovh.net/test.php The fonts expected in black display yellow, the other specified colors are invisible. Reproduce code: --------------- <?php DEFINE("TTF_DIR","path/to/fonts/"); $im = imagecreatetruecolor (400, 100); $black = imagecolorallocate ($im, 0, 0, 0); $white = imagecolorallocate ($im, 255, 255, 255); imagefilledrectangle($im,0,0,399,99,$white); imagettftext ($im, 30, 0, 10, 40, $black, TTF_DIR."arial.ttf", "Hello World!"); header ("Content-type: image/png"); imagepng ($im); ?> Expected result: ---------------- Hello World! should be written in black Actual result: -------------- Hello World! is written in yellow ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=27693&edit=1