gpt4 book ai didi

java - 使用 AffineTransform 旋转动画 GIF (ImageIcon)

转载 作者:行者123 更新时间:2023-12-01 12:30:00 26 4
gpt4 key购买 nike

我正在尝试使用 AffineTransform 旋转存储在 ImageIcon 中的动画 gif。结果是图像没有被绘制。

这是我的代码:

AffineTransform trans = AffineTransform.getRotateInstance(imgYaw, img.getImage().getWidth(null) / 2, img.getImage().getHeight(null) / 2);
AffineTransformOp transo = new AffineTransformOp(trans, AffineTransformOp.TYPE_BILINEAR);
BufferedImage bufferedimg = new BufferedImage(img.getImage().getWidth(null), img.getImage().getHeight(null), BufferedImage.TYPE_4BYTE_ABGR);
img.setImage(atransO.filter(bufferedimg, null));
img.paintIcon(null, g, x, y);

最佳答案

与其说是一个答案,不如说是一个简化工作流程的示例......

基本上,它的作用是将 AffineTransform 直接应用于 Graphics 上下文,并向其绘制 IconImage...

现在,如果您需要的话,您可以使用 BufferedImage 中的 Graphics 上下文...

Rotating

import java.awt.Dimension;
import java.awt.EventQueue;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.GridLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.geom.AffineTransform;
import javax.swing.ImageIcon;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.Timer;
import javax.swing.UIManager;
import javax.swing.UnsupportedLookAndFeelException;

public class TestImage {

public static void main(String[] args) {
new TestImage();
}

public static final String IMAGE_PATH = "C:\\Users\\shane\\Dropbox\\Ponies\\28490 - animated gif rainbow_dash_Small.gif";

public TestImage() {
EventQueue.invokeLater(new Runnable() {
@Override
public void run() {
try {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
} catch (ClassNotFoundException | InstantiationException | IllegalAccessException | UnsupportedLookAndFeelException ex) {
ex.printStackTrace();
}

JFrame frame = new JFrame("Testing");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setLayout(new GridLayout(1, 2));
frame.add(new JLabel(new ImageIcon(IMAGE_PATH)));
frame.add(new TestPane());
frame.pack();
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}
});
}

public class TestPane extends JPanel {

private ImageIcon img;
private float degrees;

public TestPane() {

img = new ImageIcon(IMAGE_PATH);
Timer timer = new Timer(16, new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
degrees += 1;
repaint();
}
});
timer.start();

}

@Override
public Dimension getPreferredSize() {
return new Dimension(img.getIconWidth(), img.getIconHeight());
}

@Override
protected void paintComponent(Graphics g) {
super.paintComponent(g);
Graphics2D g2d = (Graphics2D) g.create();
int x = getWidth() / 2;
int y = getHeight() / 2;
g2d.setTransform(AffineTransform.getRotateInstance(Math.toRadians(degrees), x, y));
x = (getWidth() - img.getIconWidth()) / 2;
y = (getHeight() - img.getIconHeight()) / 2;
img.paintIcon(this, g2d, x, y);
g2d.dispose();
}

}

}

关于java - 使用 AffineTransform 旋转动画 GIF (ImageIcon),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26005726/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com