I have been looking at this tutorial: https://developer.mozilla.org/en-US/docs/Web/Guide/API/Camera and implemented the example they have given. It all revolves around this:
<input type="file" id="take-picture" accept="image/*">
My question is, how can I limit the size of the image? For example, I really just need a thumbnail which I will upload to a server and not a full resolution image. Is it possible to do this or am I stuck with the full sized image? Thank you