我尝试使用以下代码创建一些进度条图像:
public static void makeImage(int percent)
{
BufferedImage img = new BufferedImage(100, 30, BufferedImage.TYPE_INT_ARGB);
Graphics g = img.getGraphics();
g.setColor(Color.LIGHT_GRAY);
g.fillRect(0, 0, 100, 30);
for (int x = 0; x < percent; x++)
{
for (int y = 0; y < img.getHeight(); y++)
{
img.setRGB(x, y, Color.GREEN.darker().getRGB() );
}
}
ImgUtility.save("/home/xxx/java/myProj/src/myProj/resources/progressbars/"
+ percent + ".png", img);
}
这会创建一堆从 1.png 到 100.png 的 100x30 图像,如下所示:
然后,我尝试在托盘中显示这些图像,并逐个循环播放,以显示动画进度条的错觉(在实际使用中,我想使用这些图像来显示正在执行的任务的进度完毕):
Tray tray = Display.getDefault().getSystemTray();
TrayItem trayItem = new TrayItem(tray, SWT.NONE);
for (int p = 1; p <= 100; p++)
{
Image icon = IconLoader.load("progressbars/" + p + ".png");
System.out.println(icon.getBounds()); //always outputs
//Rectangle {0, 0, 100, 30}, showing that the 100x30 images were loaded
//correctly.
trayItem.setImage(icon);
try
{
Thread.sleep(1000);
}
catch (Exception e)
{
e.printStackTrace();
System.exit(0);
}
}
但是,当我运行此代码时,我并没有在任务栏中看到完整的图像,而是只看到一条垂直的黑色/深绿色线。
我在 Linux Mint 上。
我究竟做错了什么..?