Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'd like to be able to let my users select a specific polygonal (6-8 vertices with curved lines between points) area of an image they upload - how do I go about doing this using HTML5 & JS? The only library I found allows purely rectangular selection: http://odyniec.net/projects/imgareaselect/

share|improve this question
You'll probably have to write it yourself, by drawing lines between the points the user clicks. That's not terribly difficult but a dozen lines very specific to your problem. It may depend on what you want to do with your polygon. – dystroy Aug 26 '12 at 8:34

2 Answers

up vote 1 down vote accepted

There's already a library that does part of what you need: polyclip.js, by Zoltan Dulac You can build a UI that allows the user to select points, then feed the data to the library and you're done.

I have made a small demo if you wish to see how this could be implemented: jsfiddle.net/MFELx/

EDIT: Updated to jsfiddle demo. Click to select points on the original image and press the Generate button to generate a cropped version.

share|improve this answer
great thanks so much!! – user1198133 Nov 26 '12 at 4:19

You could load the image on to a canvas tag and then you can do all the drawing you like on that canvas.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.