在JTextPane中调整图像大小

时间:2017-10-01 17:28:28

标签: java swing image-resizing jtextpane image-scaling

我希望使用鼠标选择的图像缩放和调整大小,使用角点更改所选图像,并在Microsoft Word中更改JTextPane中的缩放图片。 此代码只是在文本编辑器中添加了没有更改大小的图像,但没有功能属性大小图片。 请有人帮我提供代码:

JFileChooser jf=new JFileChooser();
// Show open dialog
int option=jf.showOpenDialog(this);
// If user chooses to insert..
if(option == JFileChooser.APPROVE_OPTION) {
    File file = jf.getSelectedFile();
    if(isImage(file)) {
        jTextPane1.insertIcon(new ImageIcon(file.getAbsolutePath()));
    }else
        // Show an error message, if not an image
        JOptionPane.showMessageDialog(this,"The file is not an image.", 
                "Not Image", JOptionPane.ERROR_MESSAGE);
}

0 个答案:

没有答案