我希望使用鼠标选择的图像缩放和调整大小,使用角点更改所选图像,并在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);
}