Not in JavaScript, the
image cropper UI is just the JavaScript UI part, the process you could
do is:
1) User uploads image
2) Check size
2a) If too big, resize
3) Display cropper
4) Crop image based on user settings
That stops you from displaying a huge image to the user in the first
place.
If you want the original fidelity, but at the cropped size (or within a
target size) you could do (1 to 3 as above):
4) Translate provided crop co-ordinates to the original uploaded image
size
4a) Crop image using translated co-ords
4b) If still too big, resize
The second scenario would result in better image quality where the
original image is a lot larger than the one presented to the user for
cropping.
Hope that helps,
-D