我将如何让图像淡入然后淡出?我知道实现此目的的一种简单方法是制作几张具有不同不透明度的图像。
问问题
4717 次
2 回答
6
绘制图像时使用 AlphaComposite:
import java.awt.AlphaComposite;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.Image;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.ImageIcon;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.Timer;
public class FadeIn extends JPanel implements ActionListener {
Image imagem;
Timer timer;
private float alpha = 0f;
public FadeIn() {
imagem = new ImageIcon("???.jpg").getImage();
timer = new Timer(100, this);
timer.start();
}
// here you define alpha 0f to 1f
public FadeIn(float alpha) {
imagem = new ImageIcon("???.jpg").getImage();
this.alpha = alpha;
}
public void paintComponent(Graphics g) {
super.paintComponent(g);
Graphics2D g2d = (Graphics2D) g;
g2d.setComposite(AlphaComposite.getInstance(AlphaComposite.SRC_OVER,
alpha));
g2d.drawImage(imagem, 0, 0, null);
}
public static void main(String[] args) {
JFrame frame = new JFrame("Fade out");
frame.add(new FadeIn());
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setSize(420, 330);
// frame.pack();
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}
public void actionPerformed(ActionEvent e) {
alpha += 0.05f;
if (alpha >1) {
alpha = 1;
timer.stop();
}
repaint();
}
}
于 2013-07-18T19:00:25.863 回答
0
使用 deltaTime 操作 alpha 值。因此,在给定的时间段内,您可以淡入淡出。
要淡出,您可以从 1 开始 alphaValue,在每次渲染调用中减去 0.1 直到达到 0。对于淡入,从 0 开始,在每次渲染调用中将 .1 添加到 alphaValue 直到达到 1。
于 2013-07-18T18:56:53.803 回答