Java Swing:自动或以编程方式调整 JMenuItem 图标的大小?
似乎 JMenuItems 不会自动调整分配给它们的任何图像图标的大小,据我所知,也没有一个属性可以使它们自动执行此操作。
有谁知道我可以通过编程方式调整 JMenuItem 图标大小的方法吗? Icon 对象似乎缺乏功能,除非有其他函数可以实际处理 Icon 对象。
It seems that JMenuItems don't automatically resize any image icon that's assigned to them, and from what I can tell, there isn't a property that makes them automatically do that, either.
Is anyone aware of a way that I can programatically resize the Icon for a JMenuItem? It seems like the Icon object is lacking functionality as it is, unless there's some other function that can actually deal with Icon objects.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
扩展该类并重写它的 Paint 方法,以便在绘制之前调整图像的大小。
Extend the class and override it's paint method to resize the image before painting.
您可以使用 Image 类的方法
public Image getScaledInstance(int width, int height, inthins) 缩放到所需的大小。
You can use Image class' method
public Image getScaledInstance(int width, int height, int hints) to scale to desired size.