예제 #1
0
 public Image copySelectedImage() {
   return ImageProcessor.copyRectImage(getImage(), getSelectedRect());
 }
예제 #2
0
 public void crop() {
   Image img = ImageProcessor.copyRectImage(getImage(), getSelectedRect());
   setUpUndo(getImage());
   setImage(img);
   resetRect();
 }