1

i want to create a image editor for cutting multiple parts of the same image, realigning the parts with individual zooming capabilities, creating the image. and be able to return the image specifications to the program. PLease help

anto
  • 11
  • 1
  • 2

1 Answers1

2

You can achieve this using Graphics2D and BufferedImages. For reference see at this post .

Harry Joy
  • 58,650
  • 30
  • 162
  • 207
  • Wow that was a speedy reply..THank you. How do i get all this started with some dynamic-ness that can come only from the usage of the mouse! – anto Mar 06 '11 at 07:19
  • @anto:Use `MouseListener` and `MouseMotionListener`. – Harry Joy Mar 06 '11 at 07:21
  • Ya i know that, i have been programming with Java for like 10 years but is there any open source image editing library or some example that will give me a kickstart for this small part of my overall project! – anto Mar 06 '11 at 07:23
  • @anto:Above post contains sample codes. Its a tutorial. You can get the examples from there. And for libraries you should read [this post](http://stackoverflow.com/questions/603283/what-is-the-best-java-image-processing-library-approach) – Harry Joy Mar 06 '11 at 07:28
  • @anto: if my answer solves your problem then you should accept it so others can know its a correct answer. – Harry Joy Mar 06 '11 at 07:41