PHP expert |
|
Beste,
Ik ben me kennis over GD aan het opfrissen en het gaat best goed. Net heb ik een mooie schaakbord gemaakt, en nu maak ik een grafiek.
Daar gaat mijn probleem over. Ik wil mijn font die ik heb gedownload kunnen gebruiken in de functie PHP.net: imagettftext. Nu gebruik ik dit stukje code om de font te laden.
<?php
$font = imageloadfont( 'fonts/ADMUI3.fon');
?>
<?php $font = imageloadfont( 'fonts/ADMUI3.fon'); ?>
Dan krijg ik deze error:
Citaat: Warning: imageloadfont() [function.imageloadfont]: Error reading font in D:WEBSERVERwwwGDLibgrafiek.php on line 15
Warning: imagettftext() [function.imagettftext]: Could not find/open font in D:WEBSERVERwwwGDLibgrafiek.php on line 16
nu lees ik net op php.net:
Citaat: The font file format is currently binary and architecture dependent. This means you should generate the font files on the same type of CPU as the machine you are running PHP on.
Maar wat bedoelen ze ?
|