ik wil dat php een plaatje voor mij maakt met daarin informatie van de desbetreffende member die info staat in een db en het id van de row wordt met get gekregen, maar ik weet niet hoe je zon plaatje kan maken en daarna kan laten zien:s kan iemand van jullie mij helpen?
k thx maar nu krijg ik deze fout melding:
<br />
<b>Fatal error</b>: Call to undefined function: imagettfbbox() in <b>c:\inetpub\wwwroot\ppicture.php</b> on line <b>27</b><br />
// Calc the text size
$box = ImageTTFbbox('11.5px', '0', 'font/tahoma.ttf', $text);
// Calc some props for the image
$width = $box[2] - $box[0];
$height = $box[1] - $box[7];
// 10 px empty space on each side
$imagewidth = $width + 30;
$imageheight = $height + 20;
// Create the image
$pic = ImageCreate($imagewidth, $imageheight);
// Set the fontstart positions
$xstart = 10;
$ystart = $imageheight - 10;
// Write the text
ImageTTFText($pic, '11.5px', '0', $xstart, $ystart, $font, 'font/tahoma.ttf', $text);