Ho questo codice:
Codice PHP:
<?php
$z = $_GET['z'];
$ptz = $_GET['ptz'];
$name = $_GET['username'];
/*
$ptz = 1028;
$z = 0;
$name = "TomH";*/
header("Content-type: image/png");
$im = ($z==1) ? imagecreatefrompng("back2z.png") : imagecreatefrompng("back1.png");
$white = imagecolorallocate($im, 255, 255, 255);
$px = (imagesx($im) - 7.5 * strlen($string)) / 2;
$font = "arial.ttf";
imagettftext($im, 18, 0, 376, 68, $white, $font, $ptz);
$imagewidth = imagesx($im);
$imageheight = imagesy($im);
$font = "Arial Bold.ttf";
$box = @imageTTFBbox(20,0,$font,$name);
$textwidth = abs($box[4] - $box[0]);
$textheight = abs($box[5] - $box[1]);
$xcord = $imagewidth - ($textwidth)-20; // 20px from right side.
$ycord = ($imageheight/2)+($textheight/2);
ImageTTFText ($im, 20, 0, $xcord+6, $ycord-18, $white, $font, $name);
imagepng($im);
imagedestroy($im);
?>
Che serve a creare un immagine ma non ho capito bene come si utilizza:
1.Scrivo il codice su blocco note
2.Lo salvo in .php
3.Uso questo http://www.dawson02.altervista.org/s...rName&ptz=9001
Oppure devo salvarla in .png?
Perchè non so come mai non scrive niente nell'immagine risultata....
Datemi una mano,grazie in anticipo