SWT(JFace)體驗之圖片的動態(tài)漸變效果
來源:本站原創(chuàng)|時間:2020-01-10|欄目:Java編程|點擊: 次
1.漸變:
復制代碼 代碼如下:
package swt_jface.demo10;
import org.eclipse.swt.SWT;
import org.eclipse.swt.events.PaintEvent;
import org.eclipse.swt.events.PaintListener;
import org.eclipse.swt.graphics.Image;
import org.eclipse.swt.graphics.ImageData;
import org.eclipse.swt.layout.FillLayout;
import org.eclipse.swt.widgets.Canvas;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;
public class AlphaFadeIn {
Display display = new Display();
Shell shell = new Shell(display);
public AlphaFadeIn() {
shell.setLayout(new FillLayout());
final Canvas canvas = new Canvas(shell, SWT.NULL);
ImageData imageData = new ImageData("C:/icons/eclipse.jpg");
byte[] alphaValues = new byte[imageData.height * imageData.width];
for(int j=0; j<imageData.height; j++) {
for(int i=0; i<imageData.width; i++) {
alphaValues[j*imageData.width + i] = (byte) (255 - 255 * i / imageData.width);
}
}
imageData.alphaData = alphaValues;
final Image image = new Image(display, imageData);
canvas.addPaintListener(new PaintListener() {
public void paintControl(PaintEvent e) {
e.gc.drawImage(image, 10, 10);
}
});
shell.setSize(200, 100);
shell.open();
while (!shell.isDisposed()) {
if (!display.readAndDispatch()) {
display.sleep();
}
}
display.dispose();
}
public static void main(String[] args) {
new AlphaFadeIn();
}
}
2.動態(tài)
復制代碼 代碼如下:
package swt_jface.demo10;
import org.eclipse.swt.SWT;
import org.eclipse.swt.events.PaintEvent;
import org.eclipse.swt.events.PaintListener;
import org.eclipse.swt.events.ShellAdapter;
import org.eclipse.swt.events.ShellEvent;
import org.eclipse.swt.graphics.GC;
import org.eclipse.swt.graphics.Image;
import org.eclipse.swt.graphics.ImageData;
import org.eclipse.swt.graphics.ImageLoader;
import org.eclipse.swt.layout.FillLayout;
import org.eclipse.swt.widgets.Canvas;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;
public class Animations {
Display display = new Display();
Shell shell = new Shell(display);
public Animations() {
shell.setLayout(new FillLayout());
ImageLoader imageLoader = new ImageLoader();
final ImageData[] imageDatas = imageLoader.load("C:/icons/eclipse-ani.gif");
final Image image = new Image(display, imageDatas[0].width, imageDatas[0].height);
final Canvas canvas = new Canvas(shell, SWT.NULL);
canvas.addPaintListener(new PaintListener() {
public void paintControl(PaintEvent e) {
e.gc.drawImage(image, 0, 0);
}
});
final GC gc = new GC(image);
final Thread thread = new Thread() {
int frameIndex = 0;
public void run() {
while (!isInterrupted()) {
frameIndex %= imageDatas.length;
final ImageData frameData = imageDatas[frameIndex];
display.asyncExec(new Runnable() {
public void run() {
Image frame =
new Image(display, frameData);
gc.drawImage(frame, frameData.x, frameData.y);
frame.dispose();
canvas.redraw();
}
});
try {
Thread.sleep(imageDatas[frameIndex].delayTime * 10);
} catch (InterruptedException e) {
return;
}
frameIndex += 1;
}
}
};
shell.addShellListener(new ShellAdapter() {
public void shellClosed(ShellEvent e) {
thread.interrupt();
}
});
shell.setSize(400, 200);
shell.open();
thread.start();
while (!shell.isDisposed()) {
if (!display.readAndDispatch()) {
display.sleep();
}
}
display.dispose();
}
public static void main(String[] args) {
new Animations();
}
}
您可能感興趣的文章
- 01-10SWT(JFace)體驗之FormLayout布局
- 01-10SWT(JFace)體驗之RowLayout布局
- 01-10SWT JFace Bookmark 制作
- 01-10SWT(JFace)小制作 BugTracker
- 01-10SWT(JFace)體驗之StyledText類
- 01-10SWT(JFace)體驗之GridLayout布局
- 01-10SWT JFace 拖曳效果
- 01-10SWT(JFace)體驗之ApplicationWindow
- 01-10SWT(JFace)體驗之復制粘貼
- 01-10SWT(JFace)體驗之打開多個Form


閱讀排行
本欄相關(guān)
- 01-10Java咖啡館(1)——嘆咖啡
- 01-10JVM的垃圾回收機制詳解和調(diào)優(yōu)
- 01-10Java Socket編程(三) 服務器Sockets
- 01-10Java進階:Struts多模塊的技巧
- 01-10J2SE 1.5版本的新特性一覽
- 01-10Java Socket編程(一) Socket傳輸模式
- 01-10Java運行時多態(tài)性的實現(xiàn)
- 01-10Java Socket編程(二) Java面向連接的類
- 01-10Java Socket編程(四) 重復和并發(fā)服務
- 01-10Java經(jīng)驗點滴:處理沒有被捕獲的異常
隨機閱讀
- 08-05DEDE織夢data目錄下的sessions文件夾有什
- 04-02jquery與jsp,用jquery
- 01-11Mac OSX 打開原生自帶讀寫NTFS功能(圖文
- 01-10SublimeText編譯C開發(fā)環(huán)境設置
- 01-10delphi制作wav文件的方法
- 01-10C#中split用法實例總結(jié)
- 01-11ajax實現(xiàn)頁面的局部加載
- 08-05織夢dedecms什么時候用欄目交叉功能?
- 08-05dedecms(織夢)副欄目數(shù)量限制代碼修改
- 01-10使用C語言求解撲克牌的順子及n個骰子