tags:

views:

50

answers:

1

I'd like to display the image, then let the user create multiple rubber-band selections on the image. Each mouse-down creates an additional selection. Has anyone seen an implementation of this technique in javascript?

+1  A: 

I did use this image cropper script. It uses a rubber band to select the crop area. The code is pretty simple to follow and you could probably modify it to do what you want. Selecting overlapping areas would probably be a bit of a challenge though.

Script: JavaScript Image Cropper UI, using Prototype & script.aculo.us

Diodeus
+1 I use this as well.
Luca Matteis