我必须向 中添加Zoom In and Zoom Out
功能JPanel
,其中包含诸如JLabel
with之类的组件ImageIcon
。
我想Zoom JPanel
适当地使用他们的组件我尝试了以下代码片段,但它不能正常工作。
具有布局并且JPanel
本身null
放置在Applet
. 我不确定为什么它不工作的原因是因为Applet
或其他原因!
cPanel
是我的JPanel
,其中包含JLabel
跟随缩放点击的代码片段Button
,它在按钮点击之后显示闪烁屏幕,然后是原始的
Graphics g = cPanel.getGraphics();
Graphics2D g2d = (Graphics2D) g;
AffineTransform savedXForm = g2d.getTransform();
g2d.scale(1.0, 1.0);
g2d.setColor(Color.red);
super.paint(g);
g2d.setTransform(savedXForm);
cPanel.validate();
cPanel.repaint();