Java - 获取文件缩略图和调整大小

时间:2015-02-17 22:21:56

标签: java swing

我正在尝试获取与特定文件关联的缩略图,然后调整其大小。我一直在Mac上测试,并且找不到能让我实现这一目标的解决方案。

到目前为止

代码:

import com.apple.laf.AquaIcon;

import javax.swing.*;
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.io.File;


public class TestSystemIcon extends JFrame
{

 JPanel panel;
 ImageIcon icon;
 public TestSystemIcon()
 {

     panel = new JPanel();
     JButton button = new JButton("Open...");
     final JLabel label = new JLabel();
     icon = null;
     final JPanel en = new JPanel(new FlowLayout(FlowLayout.CENTER));
     label.setHorizontalAlignment(SwingConstants.CENTER);
     button.addActionListener(new ActionListener()
     {
        @Override
        public void actionPerformed(ActionEvent e)
        {
            JFileChooser fileChooser = new JFileChooser();
            if(fileChooser.showOpenDialog(null) == JFileChooser.OPEN_DIALOG)
            {
                File file = fileChooser.getSelectedFile();
                icon = resizeIcon(getThumbnail1(file),200,200);
//                    icon = resizeIcon(getThumbnail2(file),200,200);
                System.out.println(icon);
                label.setIcon(icon);
                en.add(label);
                revalidate();
                repaint();

            }
        }
    });

    panel.add(button);
    this.add(panel,BorderLayout.NORTH);
    this.add(en,BorderLayout.CENTER);

    this.setSize(400,400);
    this.setLocationRelativeTo(null);
    this.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
 }


 public ImageIcon getThumbnail1(File file)
 {
    JFileChooser f = new JFileChooser();
    Icon i = f.getIcon(file);
    //Mac Conversion.
    Image image = AquaIcon.getImageForIcon(i);
    return new ImageIcon(image);
 }

public ImageIcon getThumbnail2(File file)
{
    return new ImageIcon(file.getPath());
}

 public ImageIcon resizeIcon(ImageIcon imageIcon,int width, int height)
 {
    return new ImageIcon(imageIcon.getImage().getScaledInstance(width,height,Image.SCALE_SMOOTH));
 }


 public static void main(String[] args)
 {
     TestSystemIcon test = new TestSystemIcon();
     test.setVisible(true);
 }
}

获取缩略图的版本1具有以下行为:

  • 可以打开缩略图
  • 非常小,缩放不合适。

获取缩略图的版本2具有以下行为:

  • 尽管找到图像,但不显示图像(System.out证明了这一点)。 除了pdf之外,它显示的是实际文件,而不是 缩略图
  • 当它工作时,即pdf,它可以很好地扩展。

我知道我可以使用sun.awt.shell.ShellFolder;,但我的目标是跨平台解决方案。

感谢您的帮助

1 个答案:

答案 0 :(得分:1)

我查看了一些我过去做过的代码,看起来当你使用JLabel和ImageIcon时这个工作正常,请尝试将大图像大小调整为100x100的代码,

 ImageIcon icon = new ImageIcon("Penguins.jpg");
 Image img = icon.getImage().getScaledInstance(100,100,Image.SCALE_SMOOTH);

 // if the file is not an image, but a file on the system,
 Icon icon = FileSystemView.getFileSystemView().getSystemIcon(file);
 Image img = ((ImageIcon) icon).getImage().getScaledInstance(100,100,Image.SCALE_SMOOTH);

 ImageIcon icon1 = new ImageIcon(img);
 JLabel image  = new JLabel(icon1);