Menu principale:
header ("Content-type: image/png"); $handle = imagecreate (200, 50) or die ("Impossibile creare l'immagine"); $backgroundColor = imagecolorallocate($handle, 255, 255, 0); $textColor = imagecolorallocate($handle, 0, 0, 0); imagestring($handle, 10, 31, 18, "Ciao da gmmultimedia.it", $textColor); imagepng($handle);
imagestring($handle, 10, 31, 18, "Ciao da html.it", $textColor);
header ("Content-type: image/png"); $handle = imagecreatefrompng('image.png'); $size = min(imagesx($handle), imagesy($handle)); $imageCropped = imagecrop($handle, [ 'x' => 0, 'y' => 0, 'width' => $size, 'height' => $size ]); imagepng($imageCropped);