We need to implement a Java desktop application that allows us (initially) to create / edit / resize / polygons on (initially) images. Then these polygons would be mapped to objects in our domain model.

So we basically need a toolbar with the options describe above and the possibility for the example to create a polygon on the an image and then scale it, or resize it, just that.

Do you know some library that could facilitate our work?

We've analyzed GEF, Picollo, NetBeans Visual API, Plain Swing or SWT/JFace, but none of them seems to help us to achieve our goal, which is, implement a really basic image editing tool.

I would like to mention that I'm not saying that what I want to do is not possible with the analyzed libraries, of course it can be done, but I'd like to learn from your experiences which is the correct path to take for this problem.

Any suggestion will be welcomed.

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

You could try to use GEF and the eclipse plataform.

this article could help you.

saluti

link|improve this answer
This seems a good start, maybe combining this information with this one: ibm.com/developerworks/opensource/tutorials/os-eclipse-rcp1/… a good solution can be created. Thanks. – Claudio Acciaresi Nov 5 '10 at 13:40
If you need you cuold also try to generate the datamodel with EMF: there is an IBM redbook that could help you. redbooks.ibm.com/abstracts/sg246302.html – pbanfi Nov 10 '10 at 11:56
feedback

You might look at GraphPanel, a simple object drawing program. The control components are arranged in a JPanel, but JToolBar is a more flexible alternative.

link|improve this answer
Thanks for the links!, but I'm searching for a tool that facilitates the creation (and modification) of polygons. – Claudio Acciaresi Nov 3 '10 at 18:18
I don't know of an existing library. If you adapt GraphPanel, add an Edge to connect the first and last Node. Your vertices don't need to be fancy, just big enough to select. I'd consider java.awt.Polygon for the vertex container. – trashgod Nov 3 '10 at 19:51
Thanks a lot for you help, I will add some comments here if we find a nice library that can help us with this. Picollo is nice, but we don't want to add all the complexity of picollo just for these needs. Thanks again! – Claudio Acciaresi Nov 3 '10 at 20:18
feedback

Have you looked at imagine.dev.java.net? It is a NetBeans Platform application, which, though unfinished, might provide you with an interesting starting point.

link|improve this answer
Thanks a lot for this link, we did not know the existence of this project, did you use it? – Claudio Acciaresi Nov 9 '10 at 17:30
feedback

Your Answer

 
or
required, but never shown

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