Java Swing:自动或以编程方式调整 JMenuItem 图标的大小?

发布于 2024-10-17 17:22:06 字数 149 浏览 2 评论 0原文

似乎 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

手长情犹 2024-10-24 17:22:06

扩展该类并重写它的 Paint 方法,以便在绘制之前调整图像的大小。

Extend the class and override it's paint method to resize the image before painting.

只为一人 2024-10-24 17:22:06

您可以使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文