PHP interesse |
|
Ik heb een foutmelding steeds terwijl het zelfde script ergens anders volgens mij wel werkt!
Ook is allee goed geinstalleerd voglens mij GD enz.
foutmelding:
http://www.wijzijnlekker.nl/test/test2.php
Misschien dat het aan mijn " FONT " ligt. heeft iemand misschien
een goede font voor mij waarmee ik kan testen en misschien een site waar ze staan.
OF zit er misschien een fout in het script???
<?php
// Set the content-type
header("Content-type: image/png");
// Create the image
$im = imagecreate(400, 30);
// Create some colors
$white = imagecolorallocate($im, 255, 255, 255);
$grey = imagecolorallocate($im, 128, 128, 128);
$black = imagecolorallocate($im, 0, 0, 0);
// The text to draw
$text = 'Testing...';
// Replace path by your own font path
$font = 'Arial_Black.ttf';
// Add some shadow to the text
imagettftext($im, 20, 0, 11, 21, $grey, $font, $text);
// 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 = imagecreate(400, 30); // Create some colors $white = imagecolorallocate($im, 255, 255, 255); $grey = imagecolorallocate($im, 128, 128, 128); $black = imagecolorallocate($im, 0, 0, 0); // The text to draw $text = 'Testing...'; // Replace path by your own font path $font = 'Arial_Black.ttf'; // Add some shadow to the text imagettftext($im, 20, 0, 11, 21, $grey, $font, $text); // 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); ?>
PLS help me:s
|