似乎装有ImageIO.read的PNG忽略了alpha通道。 (我试过JRE 6更新20)
Bug?
示例:
public class Test extends JFrame
{
public Test()
{
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
JButton b = new JButton("Test");
try
{
b.setIcon(new ImageIcon(ImageIO.read(new File("D:\\image.png"))));
}
catch (IOException e2)
{
}
b.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent e)
{
}
});
getContentPane().add(b, BorderLayout.CENTER);
setSize(500,500);
setVisible(true);
}
/**
* @param args
*/
public static void main(String[] args)
{
new Test();
}
}
答案 0 :(得分:5)
你怎么知道它忽略了alpha通道。下面的代码生成了这个屏幕截图:
代码:
public static void main(String[] args) throws Exception {
URL url = new URL("http://upload.wikimedia.org/" +
"wikipedia/commons/4/47/PNG_transparency_demonstration_1.png");
Image image = ImageIO.read(url);
JPanel bgPanel = new JPanel(new BorderLayout()) {{
setOpaque(false);
}
protected void paintComponent(Graphics g) {
Rectangle r = g.getClipBounds();
// paint bg
int s = 10;
for (int y = r.y / s; y < r.y + r.height; y += s) {
int o = (y % (2*s) == 0 ? s : 0);
for (int x = r.x / s + o; x < r.x + r.width; x += 2*s)
g.fillRect(x, y, s, s);
}
super.paintComponent(g);
}
};
bgPanel.add(new JLabel(new ImageIcon(image)) {{
setOpaque(false);
}});
JFrame frame = new JFrame("Test");
frame.add(bgPanel);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setSize(350, 300);
frame.setVisible(true);
}
答案 1 :(得分:2)
根据我的经验 - 使用JDK 1.6.0_21测试,Java imageio png解码器部分支持透明度。它支持带有额外alpha通道(每像素32位)的24位全彩色图像,以及带有tRNS主干的索引彩色图像,其中包含可与现有RGB调色板组合的alpha贴图以定义哪种颜色是透明的。但它不支持带有tRNS中继的24位RGB,其中包含图像的单个透明RGB颜色值。也许您的图像是imageio不支持的格式之一。
答案 2 :(得分:1)
您可以使用Sixlegs Java PNG Decoder,它没有Alpha透明度错误。作为参考,Sun Java Bug #6371389讨论了与PNG alpha通道类似的问题。