|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2003-02-06 12:48 UTC] davidl at tocquigny dot com
[2003-02-06 13:18 UTC] davidl at tocquigny dot com
[2003-02-06 13:33 UTC] iliaa@php.net
[2003-02-06 15:01 UTC] davidl at tocquigny dot com
[2003-02-06 15:15 UTC] davidl at tocquigny dot com
[2003-02-08 13:13 UTC] iliaa@php.net
[2003-02-20 08:08 UTC] sniper@php.net
[2003-03-13 14:00 UTC] FR at ncis dot ca
[2003-04-10 08:51 UTC] kadlcakd at yahoo dot com
[2003-05-27 17:30 UTC] paul at thewall dot de
[2003-05-29 10:47 UTC] davidl at tocquigny dot com
[2003-06-10 19:22 UTC] iliaa@php.net
[2003-06-15 23:46 UTC] sniper@php.net
[2007-07-17 12:17 UTC] xeon at adamant dot net
[2009-08-04 03:28 UTC] bugs-php at markrobertwilkins dot com
[2009-10-16 16:33 UTC] ditemoi at hotmail dot fr
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Nov 04 20:00:01 2025 UTC |
here is the script: <?php print file_exists("fonts/arial.ttf"); imagettfbbox(20, 0, "fonts/arial.ttf","Testing... "); ?> which produces the following: 1 Warning: imagettfbbox() [function.imagettfbbox]: ????G?@?%@ in /xxx/xxx/xxx/xxx/test2.php on line 3 so the font file exists, I don't know if that is the problem or not, but if I turn off error reporting, and use imagettftext, the text doesn't show up. I have several applications placing text on a jpeg that work in 4.2.3 and don't place any text in 4.3.0, making 4.3.0 unusable to me until I can figure out what the difference is. fyi, compile flags are: for 4.2.3 (working fine): './configure' '--with-apxs' '--with-mysql' '--with-ttf' '--with-jpeg-dir' '--with-gd' '--with-xpm-dir=/usr/X11R6' '--with-png' '--with-zlib' '--enable-track-vars' '--without-oracle' '--without-oci8' '--with-xml' '--with-pdflib=/usr/local' for 4.3.0 (not working): './configure' '--with-apxs' '--with-mysql' '--with-xpm-dir=/usr/X11R6' '--with-ttf' '--with-zlib' '--enable-track-vars' '--without-oracle' '--without-oci8' --with-gd '--with-xml' '--with-pdflib=/usr/local' '--disable-cgi' --with-jpeg-dir=/usr/lib/ --with-png --enable-gd-native-ttf Trying the same compile flags for 4.3 as was used on 4.2.3 doesn't work as well. Thanks in advance.