Comunidad de diseño web y desarrollo en internet online

AYUDA POR FAVOR:(

Citar            
MensajeEscrito el 15 Dic 2010 02:29 am
hola
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 XD!!!AYUDAAAAAAA :( :( :( :(

Por GUNSTARTORRELLO

21 de clabLevel



 

chrome
Citar            
MensajeEscrito el 17 Dic 2010 02:46 am
Gun... tienes que subir el archivo por ftp aquí tienes un tuto
subelo por ftp

salebai

Por Zcarpa

6 de clabLevel



 

firefox
Citar            
MensajeEscrito el 17 Dic 2010 11:53 pm
Mírate la clase move_uploaded_files de php
Con esto podrás subir tus dibujos sin problemas.

Por malcomcc

39 de clabLevel



Genero:Masculino  

Desarrollador Web/Multiplataforma/Gráfico

msie8
Citar            
MensajeEscrito el 24 Dic 2010 04:35 am
GRACIAS POR SU TIEMPO Y RESPUESTAS!!!
PERO NO LO CONSEGUI...:(
HE TENIDO QUE CAMBIAR DE SCRIPT...AVER
FELICES FIESTAS A TOD@S!!!

Por GUNSTARTORRELLO

21 de clabLevel



 

chrome

 

Cristalab BabyBlue v4 + V4 © 2011 Cristalab
Powered by ClabEngines v4, HTML5, love and ponies.