I would like to have a button called "capture image" on my frontend (react) that allows the user to capture any portion of their screen and send the image data to my program.
I am aiming to have a flow like this:
- User clicks capture
- User selects portion of screen
- Preview is displayed on frontend
- User clicks "submit"
- Backend receives image
Is this (steps 2 & 3) possible with Tauri? If so, how?
Also, I would want to send that image data to the backend, how would I send that? (step 5)


