PHP expert |
|
Beste,
Ik heb een probleempje met GD Library.
Wanneer ik er text op wil zetten met ImageString werkt het goed, maar met ImageTTFText krijg ik deze error:
De afbeelding "http://localhost/GD/image2.php" kan niet worden weergegeven, omdat hij fouten bevat.
Ik dus even kijken op PHP.net, heb ik daar een voorbeeldje van gekopiërd, maar dan krijg ik nog steeds dezelfde error.
Dit is de code:
<?php
// Set the content-type
header("Content-type: image/png");
// Create the image
$im = imagecreatetruecolor(400, 30);
// Create some colors
$white = imagecolorallocate($im, 255, 255, 255);
$grey = imagecolorallocate($im, 128, 128, 128);
$black = imagecolorallocate($im, 0, 0, 0);
imagefilledrectangle($im, 0, 0, 399, 29, $white);
// The text to draw
$text = 'Testing...';
// Replace path by your own font path
$font = 'lohit_gu.ttf';
if(!file_exists($font)){
die("font betsaat niet!");
}
// Add the text
imagettftext($im, 20, 0, 10, 20, $black, $font, $text);
// Using imagepng() results in clearer text compared with imagejpeg()
imagepng($im);
imagedestroy($im);
?>
<?php // Set the content-type header("Content-type: image/png"); // Create the image $im = imagecreatetruecolor(400, 30); // Create some colors $white = imagecolorallocate($im, 255, 255, 255); $grey = imagecolorallocate($im, 128, 128, 128); $black = imagecolorallocate($im, 0, 0, 0); imagefilledrectangle($im, 0, 0, 399, 29, $white); // The text to draw $text = 'Testing...'; // Replace path by your own font path $font = 'lohit_gu.ttf'; die("font betsaat niet!"); } // Add the text imagettftext($im, 20, 0, 10, 20, $black, $font, $text); // Using imagepng() results in clearer text compared with imagejpeg() imagepng($im); imagedestroy($im); ?>
|