Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
假设我在 JLabel 中有一张图片。这是我目前添加它的方式:
p=resizeImage(p,lbl.getWidth(),lbl.getHeight()); lbl.setIcon(p);
我想在调整标签大小时调整它的大小。
我可以编写一个小函数来获取图像的宽高比,获取标签的宽度和高度,找到两者中的较小者(按比例)并手动计算新的高度和宽度。这不是问题,但我想知道是否有更清洁的方法。
您可以收听标签的调整大小事件,或者我更喜欢直接绘制图像(用 JComponent 替换 JLabel)。