I have looked at a couple questions on SO asking about cropping images in java. This is very close to what I need to do, but not exactly it. Thanks to this question I've simplified the code into what I need it to do. It displays an image on a JFrame and allows the user to draw rectangles on it. I'd like to take this to the next level and save whatever is selected by the user within the rectangle to a new image file.
I have successfully used "getSubImage()" from the BufferedImage class, but this entailed merely using the same image passed into the ImageIcon (JLabel l = new JLabel(new ImageIcon("IMAGE.jpg")) would entail simply passing the same image path string into a BufferedImage and specifying pixel coordinates). I instead want to use the JLabel itself because pixel coordinates may vary if I expand the JFrame to include Buttons and such.
I've also looked at some examples using CropImageFilter but, if I'm not mistaken, it uses the same logic as with "getSubImage". I don't want to simply use the same image file; I want to use the region selected from the JLabel itself.
Here is my code that enables the user to draw rectangles on a JLabel within a JFrame:
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class Contextual extends JFrame implements MouseListener, MouseMotionListener {
//track the mouse
//info: where it is
//first clicked,
//when the mouse is
//released
int startX, startY;
int endX, endY;
//take the difference
//between clicked and
//released to find
//the width and height
//of the rectangle outline
int width;
int height;
ImageIcon icon;
JLabel label;
public Contextual() {
//import the image for display and
//add it to the JFrame
icon = new ImageIcon("OCRTEST.jpg");
label = new JLabel(icon);
getContentPane().add(label);
addMouseListener(this);
addMouseMotionListener(this);
pack();
setVisible(true);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
public static void main(String args[]) {
Contextual application = new Contextual();
}
public void mousePressed(MouseEvent event) {
endX = event.getX();
endY = event.getY();
}
public void mouseDragged(MouseEvent event) {
startX = event.getX();
startY = event.getY();
repaint();
}
public void paint(Graphics g) {
super.paint(g);
width = startX - endX;
height = startY - endY;
g.drawRect(endX, endY, width, height);
}
public void mouseClicked(MouseEvent event) {}
public void mouseReleased(MouseEvent event) {}
public void mouseEntered(MouseEvent event) {}
public void mouseExited(MouseEvent event) {}
public void mouseMoved(MouseEvent event) {}
}
The question is, can I save the selected area within the rectangle to a new image file? Thanks for the help. I really apologize if this is a duplicate question, I swear I spent about three hours surfing for an answer. I just couldn't find one specific to my problem.