ID: 46038 Updated by: [EMAIL PROTECTED] Reported By: cory dot mawhorter at ephective dot com -Status: Assigned +Status: Feedback Bug Type: GD related Operating System: Windows Vista PHP Version: 5.2.6 Assigned To: pajoye New Comment:
you do not need (and should not) download the T1Lib dll. It is already in the extension. Do you have the font files please? Previous Comments: ------------------------------------------------------------------------ [2008-09-15 00:38:48] [EMAIL PROTECTED] Pierre, any idea? ------------------------------------------------------------------------ [2008-09-10 06:03:14] cory dot mawhorter at ephective dot com Description: ------------ I can't get the the example given at http://php.net/imagepstext to work at all under Windows. I have GD with t1lib enabled but it is producing an error and will not load the font. The same code runs fine under linux. Originally, I was getting a "Font file not found" error even though the font file was definitely there. I downloaded and installed the T1Lib from sourceforge [ http://gnuwin32.sourceforge.net/packages/t1lib.htm ] for giggles and the error changed to the one below. This may just be a coincidence, though. Reproduce code: --------------- Code from http://php.net/imagepstext example. Comments removed. <?php $im = imagecreatetruecolor(200, 200); $black = imagecolorallocate($im, 0, 0, 0); $white = imagecolorallocate($im, 255, 255, 255); $font = imagepsloadfont('C:\\path-to\\postscript-font\\albertus.pfb'); imagepstext($im, 'Sample text is simple', $font, 12, $black, $white, 50, 50); header('Content-type: image/png'); imagepng($im); imagedestroy($im); ?> Expected result: ---------------- Image rendered without errors. Actual result: -------------- Trying to run the above code gives the following error: Warning: imagepstext() [function.imagepstext]: T1Lib Error: Syntactical Error Scanning Font File in [path]\pstest.php on line 13 I've tried with a couple different fonts and always get the same result. I run the same code on my linux server with the same fonts without issue. ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=46038&edit=1