Alexandru Chirila
Alexandru Chirila

Reputation: 2352

Framework for Image, drawing and manipulation in Java?

I want to create a small Java application that will be capable of simple image manipulation (layers etc) and drawing (simple shapes, fills, etc).

What framework is best to use for this? I was looking into JavaFX 2.0, it seemed that it was very appropiate for this but, it has no capabilities for exporting images (This is a must have functionality).

Upvotes: 1

Views: 421

Answers (1)

Sergey Grinev
Sergey Grinev

Reputation: 34508

JavaFX 2 will work for you.

Exporting images can be done through workaround described in Copying the image of a ScatterChart to system clipboard in JavaFX 2.0

Upvotes: 1

Related Questions