Hi,
I'm trying to get this code from the php manual to work:
<?php
header("Content-type: image/png");
$string = $_GET['text'];
$im = imagecreatefrompng("/fonts/artist.png");
$orange = imagecolorallocate($im, 220, 210, 60);
$px = (imagesx($im) - 7.5 * strlen($string)) / 2;
imagestring($im, 3, $px, 9, $string, $orange);
imagepng($im);
imagedestroy($im);
?>
THe script is called with an image tag:
<IMG SRC="/fonts/gd_text.php?text=$artist">
No image is outputed? 😕
GD is definitely installed and working (so my host tells me/shared hosting).