欧美大屁股bbbbxxxx,狼人大香伊蕉国产www亚洲,男ji大巴进入女人的视频小说,男人把ji大巴放进女人免费视频,免费情侣作爱视频

歡迎來到入門教程網(wǎng)!

Java編程

當前位置:主頁 > 軟件編程 > Java編程 >

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();
    }
}

上一篇:SWT(JFace)體驗之ProgressBar

欄    目:Java編程

下一篇:SWT(JFace)體驗之ViewForm的使用

本文標題:SWT(JFace)體驗之圖片的動態(tài)漸變效果

本文地址:http://mengdiqiu.com.cn/a1/Javabiancheng/8515.html

網(wǎng)頁制作CMS教程網(wǎng)絡編程軟件編程腳本語言數(shù)據(jù)庫服務器

如果侵犯了您的權(quán)利,請與我們聯(lián)系,我們將在24小時內(nèi)進行處理、任何非本站因素導致的法律后果,本站均不負任何責任。

聯(lián)系QQ:835971066 | 郵箱:835971066#qq.com(#換成@)

Copyright © 2002-2020 腳本教程網(wǎng) 版權(quán)所有