tengo una pequeña aplicacion que el usuario puede:
dibujar y guardar el dibujo en su pc.!!!
el escript que hay abajo,GUARDA el dibujo hecha por el usuario EN su PC.en una ventana vueva,en el header...
QUIERO GUARDARLA EN LA MISMA WEB DONDE ESTA ESE ARCHIVO FLASH EN UNA GALERIA(directorio) POR EJEMPLO.
POR EJEMPLO:
www.uuuu.com/imagenes/galeria.html
este es el escript:
Código PHP :
<? // Turn off all error reporting error_reporting(0); //Get screenshot properties $w = $_POST['width']; $h = $_POST['height']; $filename = $_POST['filename']; //Create an empty image $image = imagecreatetruecolor($w, $h); //Fill the image with white pixels imagefill($image, 0, 0, 0xFFFFFF); //Fill the image the image with pixels for($y = 0; $y < $h; $y++){ $currentRow = explode(",", $_POST['y' . $y]); for($x = 0; $x < $w; $x++){ $pixel = $currentRow[$x]; if($pixel != ""){ while(strlen($pixel) < 6){ $pixel = "0" . $pixel; } $r = hexdec(substr($pixel, 0, 2)); $g = hexdec(substr($pixel, 2, 2)); $b = hexdec(substr($pixel, 4, 2)); $col = imagecolorallocate($image, $r, $g, $b); imagesetpixel($image, $x, $y, $col); } } } //Download the image header("Cache-Control: must-revalidate, post-check=0, pre-check=0"); header('Content-Description: File Transfer'); header("Content-type:image/jpeg"); header('Content-Disposition: attachment; filename='.$filename); imagejpeg($image, "", 100); ?>
quitando lo del header y poniendo algo de copy $FILES to image/galeria !!!AYUDAAAAAAA