本文介绍了使用 java.awt.BasicStroke 动画虚线的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
有没有办法使用 java.awt 中的 BasicStroke 生成动画虚线?我的愿望是有一条连续的虚线,就像 Photoshop 的矩形标记工具的线条动画一样.
Is there a way to produce animated dashed line using BasicStroke from java.awt? My desire is to have a running dashed-line in the same way that photoshop's rectangle marque tool has its line animated.
推荐答案
使用虚线、Thread
(或 Swing Timer
)&将它们与 repaint()
结合起来,并对破折号的开始和结束位置进行一些调整 - 就这样了.
Use a dashed line, a Thread
(or a Swing Timer
) & combine them with repaint()
and some tweaking of where the dashes start and end - and there you have it.
package test;
import java.awt.BasicStroke;
import java.awt.Color;
import java.awt.Graphics2D;
import java.awt.Shape;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.geom.Rectangle2D;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;
import javax.imageio.ImageIO;
import javax.swing.ImageIcon;
import javax.swing.JLabel;
import javax.swing.JOptionPane;
import javax.swing.SwingUtilities;
import javax.swing.Timer;
public class AnimatedStroke {
public static void main(String[] args) {
SwingUtilities.invokeLater(new Runnable() {
public void run() {
BasicStroke dashedStroke;
final int width = 100;
final int height = 30;
final BufferedImage image = new BufferedImage(
width,height,BufferedImage.TYPE_INT_ARGB);
final JLabel label = new JLabel(new ImageIcon(image));
int pad = 5;
final Shape rectangle = new Rectangle2D.Double(
(double)pad,(double)pad,
(double)(width-2*pad),
(double)(height-2*pad));
ActionListener listener = new ActionListener() {
float dashPhase = 0f;
float dash[] = {5.0f,5.0f};
@Override
public void actionPerformed(ActionEvent ae) {
dashPhase += 9.0f;
BasicStroke dashedStroke = new BasicStroke(
1.5f,
BasicStroke.CAP_ROUND,
BasicStroke.JOIN_MITER,
1.5f, //miter limit
dash,
dashPhase
);
Graphics2D g = image.createGraphics();
g.setColor(Color.WHITE);
g.fillRect(0,0,width,height);
g.setColor(Color.BLACK);
g.setStroke(dashedStroke);
g.draw(rectangle);
g.dispose();
label.repaint();
/*
if (dashPhase<100f) {
try {
ImageIO.write(
image,
"PNG",
new File("img" + dashPhase + ".png"));
} catch(IOException ioe) {
// we tried
}
}*/
}
};
Timer timer = new Timer(40, listener);
timer.start();
JOptionPane.showMessageDialog(null, label);
}
});
}
}
这篇关于使用 java.awt.BasicStroke 动画虚线的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!