3. ทำซ้ำ ๆ

The Camtasia Studio video content presented here requires JavaScript to be enabled and the latest version of the Macromedia Flash Player. If you are you using a browser with JavaScript disabled please enable it now. Otherwise, please update your version of the free Flash Player by downloading here.

 
รหัสที่ 3-6  โปรแกรมแสดงภาพจากแฟ้มข้อมูลและทำภาพจางด้วยเมท็อด fade
import jlab.graphics.DWindow;
// โปรแกรมแสดงภาพจากแฟ้มข้อมูลและทำภาพจาง 
public class FadingWindow {
  public static void main(String[] args) {     
    DWindow w = new DWindow(100,100);
    w.loadImage("c:/java101/name.jpg");
    w.fade(0.3);  // ตั้งค่าได้ตั้งแต่ 0 ถึง 1 : 0 = ไม่จางเลย, 1 = ภาพจางจนไม่เห็น 
  }
}
©2009 S.Prasitjutrakul