Örnek: Aşağıdaki fonksiyon yazılı bir PNG remsi üretir.
$resim = imagecreate(150, 30);
$arkaplan = imagecolorallocate($resim, 255, 0, 0);
$yazirengi = imagecolorallocate($resim, 0, 0, 255);
imagestring($resim, 5, 0, 0, "Bu bir resim", $yazirengi);
header(´Content-type: image/png´);
imagepng($resim);
imagedestroy($resim);