I get a jpeg-image from this input field:
<input type="file" id="iAppIcon" accept="image/jpeg" form="imageAppIcon"></input>
How can i handle this now?
When i use console.log($("#imageAppIcon").val())
i get "undefined".
I also cant find out the type of it.
What i want to do with it in the end, is to convert it into base64, to save it. I've seen quite a lot of posts about that using canvas but they used a different method to upload an image, at least it looked to me as if they would do that.