如何使用 Java 调整图像大小?
我有一堆 48x48 图像,需要 16x16 版本,我不想存储 16x16 版本,而是想动态调整它们的大小。我当前的代码如下所示(model.icon() 返回 48x48 图像):
Icon icon = model.icon();
Image image = new BufferedImage(icon.getIconWidth(), icon.getIconHeight(), BufferedImage.TYPE_INT_RGB);
return new ImageIcon(image.getScaledInstance(16, 16, Image.SCALE_AREA_AVERAGING));
不幸的是,当运行此代码时,我得到一个 16x16 黑色方块而不是图像。
I have a bunch of 48x48 images that I need 16x16 versions of, and instead of storing the 16x16 versions, I want to resize them on the fly. My current code looks like this (model.icon() returns the 48x48 image):
Icon icon = model.icon();
Image image = new BufferedImage(icon.getIconWidth(), icon.getIconHeight(), BufferedImage.TYPE_INT_RGB);
return new ImageIcon(image.getScaledInstance(16, 16, Image.SCALE_AREA_AVERAGING));
Unfortunately, when this code is run, I get a 16x16 black square instead of the image.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
试试这个。
Try this.
您需要的不仅仅是图标参考的更多信息。您需要访问实际图像。您的新图像是一个黑色方块,因为您从未设置图像的源(即您创建一个新的黑色图像,然后缩放空图像)。
You need more information than just the Icon reference. You need access to the actual image. You're new image is a black square because you never set the source if the image (i.e. you create a new black image and then scale the empty image).
您没有将图标放入图像中。如果图标是一个
ImageIcon
,那么你可以这样做:You are not putting the Icon into the Image. If icon is an
ImageIcon
, then you can do:您也可以使用此方法来捕获图像
You can use this method also for seizing images