I have a Blazor (webAssembly) app that needs to upload photos. Most of these are just pictures of documents that don't need the 2+mb size that a camera/phone take. In testing I can easy reduce the file size to ~100kb without issue. I would like to resize these images before uploading to an API for processing, but since I'm using blazor webassembly I cannot figure out the most efficient way to handle this. I just need something simple, but since System.Drawing is not supported for resizing or other solutions work server side, looking for any guidance.
Thanks