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/
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
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. |
||||
|
|
|
You could load the image on to a canvas tag and then you can do all the drawing you like on that canvas. |
|||
|
|