How to send captured photo from Camera QML to a server using XMLHttpRequest?
Unsolved
Mobile and Embedded
-
When i a take a picture in my qt application, in a android device for example, the file is written in "camera.imageCapture.capturedImagePath". My issue is, how can i send this image file to the server using XMLHttpRequest? Does anyone can help me? Thanks!
-
Hi and welcome to devnet,
From the top of my head: you should rather use C++ with QNetworkAccessManager for the upload and QFile to access the image data.
-
Hi and welcome to devnet,
From the top of my head: you should rather use C++ with QNetworkAccessManager for the upload and QFile to access the image data.
@SGaist I will try to use these 2 resources and post the results. Thanks for your help, SGaist! :D