如何通过捕获jframe图像到文件摆脱边界?

时间:2011-06-10 20:49:33

标签: java image swing jframe awtrobot

所以我创建了一个从csv文件创建图形时间轴的应用程序。我现在已完成那部分我只需要帮助使图像“漂亮”。捕获图像时,JFrame的边框也被捕获! 如何设置边框未被捕获?或者我如何摆脱它并保持图像尺寸? enter image description here

2 个答案:

答案 0 :(得分:2)

这是一个简单的例子。只是为了澄清你的需求。基于solution of How to remove the title bar from a JFrame Screenshot?

以下程序获取其JFrame的屏幕截图并将其写入文件。

import java.awt.Dimension;
import java.awt.EventQueue;
import java.awt.FlowLayout;
import java.awt.event.ActionListener;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;
import javax.imageio.ImageIO;
import javax.swing.JButton;
import javax.swing.JFrame;

/* Writes self screenshot on Screenshot button click. */
public class ScreenshotFrame extends JFrame {

    public ScreenshotFrame () {
        initComponents();
    }

    public static void main(String[] args) {
        EventQueue.invokeLater(new Runnable() {
            public void run() {
                new ScreenshotFrame().setVisible(true);
            }
        });
    }

    private void initComponents() {
        setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);

        JButton screenshotButton = new JButton();

        screenshotButton.setText("Screenshot");
        screenshotButton.setToolTipText("Take my screenshot.");
        screenshotButton.addActionListener(new ActionListener() {
            public void actionPerformed(java.awt.event.ActionEvent evt) {
                writeImageToFile(getScreenshot());
            }
        });        

        getContentPane().setLayout(new FlowLayout());
        getContentPane().add(screenshotButton);

        pack();
    }

    /* Modified method from pointed solution. */
    private BufferedImage getScreenshot() {
        Dimension dim = this.getContentPane().getSize();
        BufferedImage image =
                new BufferedImage(dim.width, dim.height, BufferedImage.TYPE_INT_RGB);
        this.getContentPane().paint(image.getGraphics());
        return image;
    }

    /* Write image to png file in current dir.*/
    private void writeImageToFile(BufferedImage image) {
        try {
            File file = new File("JFrameScreenshot.png");
            file.createNewFile();
            ImageIO.write(image, "png", file);
        } catch (IOException ex) {/*do smth*/ }
    }
}

这是你想要的,if_zero_equals_one吗?如果没有,也许你可以在你的问题中添加一些代码,试图做你想要的。

P.S。感谢Dariencamickr,他指出了在哪里找到它的来源 例。 也许这应该是一个评论。但是这种格式化更清晰。

答案 1 :(得分:0)

BufferedImage image = (BufferedImage)createImage(getContentPane().getSize().width, getContentPane().getSize().height);
getContentPane().paint(image.getGraphics());

这是我相信我一直在寻找的。