Would you like me to send you the PHP project? Let me know. I'll prepare it and send it to you.
You could just itemise the additional php libraries you had to add to make it work...
I didn't explain, I have a software developed with PHP that allows you to take photos using any camera on a phone, tablet, etc.
Of course, it's preferable to put an icon. Hahaha!!!
They sent me an app; I've tried it and it works, but when I insert the camera and take and process the photo, it crashes and won't upload.
I forgot to mention that the images that work are loaded in the APP.
Please provide a screenshot of an image that dors not work and a screenshot of the error message
Also try different paths to the taken image, i e.absolute and full paths
Taifun
There is no error message and I am using the full image path (imgPath), when viewing the result on the website the file appears but it is empty
Check you are getting base64 out of the convertor.
If not, try removing the file://
prefix from imgPath
<?php
$datos=$_POST;
$contenido=$datos['contenido'];
$nombre=$datos['nombre'];
$plainText = base64_decode(str_replace(array('-', '_',' ','\n'), array('+', '/','+',' '), $contenido));
$ifp = fopen( $nombre, "wb" );
fwrite( $ifp, $plainText );
fclose( $ifp );
echo "Creo que ha subido";
?>
You probably do not need to do the string replacements inside base64_decode, you should be uploading plain base64, not a datauri.
Did you say this php works if you just upload an image on your device ?
You should also UriEncode your base64 before uploading
What I said is that if I upload the image in the APP it works there.
We've already done what you mentioned above, and it didn't work. It seems like it's a big hassle to take a photo with the camera and upload it to a website.
Not quite, it is decoding a base64 string to an image blob...
If you were supplying a datauri:
data:image/jpeg;base64,/9j/4AAQSkZJRgABAgAAZABkAAD
then you need the string replacements section in order to return
/9j/4AAQSkZJRgABAgAAZABkAAD
to the decoder (base64_decode
)
Would you like to see if you can upload to my server ? (I can send you details in a private message)
If you can, then it will tell us that the issue is on your server, if you can't then the issue may be somewhere in your app.
Ok!!!
PM sent