为什么下面的代码显示的是黑色图片而不是图片?如何正确扩展BufferedImage?
class SizeOfImage {
public static void main(String[] args) throws Exception {
URL url = new URL("http://cloudbite.co.uk/wp-content/uploads/2011/03/google-chrome-logo-v1.jpg");
final BufferedImage bi = ImageIO.read(url);
final String size = bi.getWidth() + "x" + bi.getHeight();
final CustomImg cstImg = new CustomImg(bi.getWidth(), bi.getHeight(), bi.getType());
SwingUtilities.invokeLater(new Runnable() {
public void run() {
JLabel l = new JLabel(size, new ImageIcon(cstImg), SwingConstants.RIGHT);
JOptionPane.showMessageDialog(null, l);
}
});
}
public static class CustomImg extends BufferedImage {
public CustomImg(int width, int height, int type){
super(width, height, type);
}
}
}发布于 2011-11-22 00:23:50

import java.awt.image.BufferedImage;
import java.awt.Graphics;
import javax.swing.*;
import javax.imageio.ImageIO;
import java.net.URL;
class SizeOfImage {
public static void main(String[] args) throws Exception {
URL url = new URL(
"http://cloudbite.co.uk/wp-content/" +
"uploads/2011/03/google-chrome-logo-v1.jpg");
BufferedImage bi = ImageIO.read(url);
final String size = bi.getWidth() + "x" + bi.getHeight();
final CustomImg cstImg = new CustomImg(
bi.getWidth(),
bi.getHeight(), bi.
getType());
// paint something to the new image!
Graphics g = cstImg.createGraphics();
g.drawImage(bi,0,0,null);
g.dispose();
SwingUtilities.invokeLater(new Runnable() {
public void run() {
JLabel l = new JLabel(
size,
new ImageIcon(cstImg),
SwingConstants.RIGHT );
JOptionPane.showMessageDialog(null, l);
}
});
}
public static class CustomImg extends BufferedImage {
public CustomImg(int width, int height, int type){
super(width, height, type);
}
}
}发布于 2011-11-22 00:14:46
可能是因为下载的图像bi从未绘制到cstImg上。
这一行:
CustomImg cstImg = new CustomImg(bi.getWidth(), bi.getHeight(), bi.getType());基于bi的宽度、高度和类型创建新图像...而不是bi的内容。为此,您可能希望执行以下操作
cstImg.getGraphics().drawImage(bi, 0, 0, null);https://stackoverflow.com/questions/8214810
复制相似问题