1

我正在使用 java socket 开发一个绘图程序。多个用户可以绘制并将其保存为 jpeg。目前我的保存图像功能只保存一个空白画布。它不能保存绘制的坐标。

我在下面分享我的部分代码。=)

我没有为我的 Canvas 类使用 paint 或 paintComponent,因为使用 java 套接字时我遇到了发送坐标错误。相反,我正在使用 massDraw()。

    class Canvas extends JPanel {
    private int x, y;
    private float x2, y2;

    public Canvas() {
        super();
        this.setBackground(Color.white);
    }

    public void massDraw(int px, int py, int x, int y, int red, int green,
            int blue, int size) {
        Graphics g = canvas.getGraphics();
        Graphics2D g2d = (Graphics2D) g;
        g2d.setRenderingHints(myBrush);

        g2d.setStroke(new BasicStroke(size, BasicStroke.CAP_ROUND,
                BasicStroke.JOIN_BEVEL));
        g2d.setColor(new Color(red, green, blue));
        g.drawLine(px, py, x, y);

    }


}// end Canvas class

SaveJpegOP 类

class saveJpegOP implements ActionListener {

    public void actionPerformed(ActionEvent e) {
        // Ask for file name
        String str = JOptionPane
                .showInputDialog(null, "Enter File Name : ");
        // save as jpeg
           BufferedImage bufImage = new BufferedImage(canvas.getSize().width, canvas.getSize().height,BufferedImage.TYPE_INT_RGB);  
           canvas.paint(bufImage.createGraphics());  



        try {
            ImageIO.write(bufImage, "jpg", new File(str + ".jpg"));
        } catch (IOException ex) {
            ex.printStackTrace();
        }

    }

}
4

1 回答 1

1

空白画布被保存,因为从未调用过,尤其是在调用inmassDraw()时不会调用它。canvas.paint(bufImage.createGraphics())saveJpegOP

paint()基本上会重绘整个组件,并且由于您决定不覆盖它(或paintComponent()),drawMass()因此永远不会调用它并绘制空画布。

因此,您需要使用适当的参数覆盖paintComponent()和调用。massDraw()例如,参数值可以较早地设置为Canvas类中的属性。

于 2012-12-18T14:18:35.120 回答