1 2 3 4 5 6 7 8 9 10 11 12 13 14
| private BufferedImage image;
protected void paintComponent(Graphics g) {
super.paintComponent(g); // pour effacer le panel
if (image != null) {
// l'image est supposée calculée
g.drawImage(image, 0, 0, this);
}
g.setColor(Color.BLUE);
g.drawLine(orig_rectX,orig_rectY,orig_rectX,orig_rectY-rectHeight);
g.drawLine(orig_rectX,orig_rectY,orig_rectX-rectWidth,orig_rectY);
g.drawLine(e.getX(),e.getY(),orig_rectX,orig_rectY-rectHeight);
g.drawLine(e.getX(),e.getY(),orig_rectX-rectWidth,orig_rectY );
} |
Partager