//English...
Hello! Thank you Rodolfo for keep this great upload tool for free (at least until now 😛). It's the best image upload tool that I've ever seen with jquery.
Well, here's my problem: when I want to upload an image of type BMP, it uploads correctly. But if I want upload it chaging it's size (with the "resize image" tool from the web) then it uploads the image with type BMP but with errors, the image can not show correctly.
I know where's the error, I've tried to solve it, but I didn't win nothing.
The error is in engine.php, just below this:
But that function doesn't exist, I found one in the php.net forum but it doesn't work fine with this.
Thanks.
//
//Español...
Hola!Gracias Rodolfo por mantener esta gran herramienta de subida de imagenes de forma gratuita (por lo menos hasta ahora 😛). Es la mejor herramienta para subir imagenes (via web) que jamás haya visto con la libreria jquery implementada.
Bien, aqui esta mi problema: cuando quiero subir una imagen de tipo BMP, se sube correctamente. Pero si la quiero subir cambiandole el tamaño (con el "resize image" de la web) entonces se sube la imagen en el formato BMP pero con errores, no se puede ver la imagen.
Se donde esta el error, he intentado solucionarlo, pero no he conseguido nada.
El error esta en engine.php, debajo de:
Pero esa funcion no existe, encontre una en el foro de php.net pero no funciona bien con esto.
Gracias!
Hello! Thank you Rodolfo for keep this great upload tool for free (at least until now 😛). It's the best image upload tool that I've ever seen with jquery.
Well, here's my problem: when I want to upload an image of type BMP, it uploads correctly. But if I want upload it chaging it's size (with the "resize image" tool from the web) then it uploads the image with type BMP but with errors, the image can not show correctly.
I know where's the error, I've tried to solve it, but I didn't win nothing.
The error is in engine.php, just below this:
there must be:// LINE 510 if ($tipo==jpg) {
// LINE 511 $src = imagecreatefromjpeg($target);
// LINE 512 }
Code:
if ($tipo==bmp) {
$src = imagecreatefromBMP($target);
}
Thanks.
//
//Español...
Hola!Gracias Rodolfo por mantener esta gran herramienta de subida de imagenes de forma gratuita (por lo menos hasta ahora 😛). Es la mejor herramienta para subir imagenes (via web) que jamás haya visto con la libreria jquery implementada.
Bien, aqui esta mi problema: cuando quiero subir una imagen de tipo BMP, se sube correctamente. Pero si la quiero subir cambiandole el tamaño (con el "resize image" de la web) entonces se sube la imagen en el formato BMP pero con errores, no se puede ver la imagen.
Se donde esta el error, he intentado solucionarlo, pero no he conseguido nada.
El error esta en engine.php, debajo de:
deberia de haber un:// LINEA 510 if ($tipo==jpg) {
// LINEA 511 $src = imagecreatefromjpeg($target);
// LINEA 512 }
Code:
if ($tipo==bmp) {
$src = imagecreatefromBMP($target);
}
Gracias!