java打开一个图片文件,怎么设置图片大小
privatevoidopenFile()//打开一个文件的方法{intx=this.getWidth();inty=this.getHeight();label.set...
private void openFile() //打开一个文件的方法
{
int x = this.getWidth();
int y = this.getHeight();
label.setIcon (I2);
JFileChooser fc = new JFileChooser(); //实例化一个文件对话框
int rval = fc.showOpenDialog(this); //显示文件打开对话框
if(rval == JFileChooser.APPROVE_OPTION)
{
String fileName = fc.getSelectedFile().getPath(); //获得文件对话框中用户选中的文件名
label.setIcon(new ImageIcon(fileName));
System.out.println(x+"hhh"+y);
// fileName.setImage(new ImageIcon(fileName).getScaledInstance(x, y,Image.SCALE_DEFAULT));
// this.drawImage(image, 0, 0, x, y, null);
} 展开
{
int x = this.getWidth();
int y = this.getHeight();
label.setIcon (I2);
JFileChooser fc = new JFileChooser(); //实例化一个文件对话框
int rval = fc.showOpenDialog(this); //显示文件打开对话框
if(rval == JFileChooser.APPROVE_OPTION)
{
String fileName = fc.getSelectedFile().getPath(); //获得文件对话框中用户选中的文件名
label.setIcon(new ImageIcon(fileName));
System.out.println(x+"hhh"+y);
// fileName.setImage(new ImageIcon(fileName).getScaledInstance(x, y,Image.SCALE_DEFAULT));
// this.drawImage(image, 0, 0, x, y, null);
} 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询