如何将图像保存为RTF格式的文件?

时间:2013-03-12 11:48:09

标签: java image rtf jtextpane

我有一个问题,因为我能够将文本保存到RTF文件,并且还能够将图像插入到文件中,但是当我保存文件并再次加载时,图像不会显示。我曾尝试使用base64来解决这个问题但是没有用。我该怎么做才能将图像保存到RTF文件中,并在重新打开文件时显示它?

这是我的代码:

JFileChooser fileChooser = new JFileChooser();
int option = fileChooser.showOpenDialog(null);
File file = fileChooser.getSelectedFile();

if (option == JFileChooser.APPROVE_OPTION) {
    try {
        BufferedImage image = ImageIO.read(file);
        image = Scalr.resize(image, 200);
        document = (StyledDocument) textPane.getDocument();
        javax.swing.text.Style style = document.addStyle("StyleName",
                null);
        StyleConstants.setIcon(style, new ImageIcon(image));
        document.insertString(document.getLength(), "ignored text",
                style);
    }
    catch (Exception ex) {
        ex.printStackTrace();
    }
}

if (option == JFileChooser.CANCEL_OPTION) {
    fileChooser.setVisible(false);
}

1 个答案:

答案 0 :(得分:1)