ID: 27693 Comment by: sandeep at highimpactsites dot com Reported By: xavier dot blanchet at free dot fr Status: Feedback Bug Type: GD related Operating System: Linux PHP Version: 4.3.4 New Comment:
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). Previous Comments: ------------------------------------------------------------------------ [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