so I have this standard input file code
<Label class="custom-file-upload">
<input type="file" onChange={onDrop} />
Upload Photo
</Label>
I want to limit the size of the file the user can upload which I can obviously do with javascript. but I was wondering if there is any way to decide the image size for them so to speak
I've noticed when I've been testing when I choose an image it's 3.8mb but on my iPhone I can do Choose Image Size
and when I chose large (the biggest option) it said the image was 562kb which is crazily smaller and perfect for me. I don't want to be storing images bigger than I need for obvious reasons
Like I said, I know I could validate this but I fear users (especially non tech users) might bounce or not upload if they're told the image is too big. I know it's a stretch but it would be good if there was a way to influence this somehow
let me know if possible