使用像素生成图象

public void paint(Graphics g) {
// TODO 自动生成的方法存根

int h=400;
int pix[]=new int[w*h];
int dex=0;
for(int i=0;i<h;i++){
int red=(i*255)/(h-1);
for(int y=0;y<w;y++){
int blue=(y*255)/(w-1);
pix[dex++]=(255<<24)|(red<<16)|blue;
}
}
ImageProducer ip=new MemoryImageSource(w, h, pix, 0, w);
Image img=createImage(ip);
g.drawImage(img, 0, 0, this);

}

posted @   ma_fighting  阅读(278)  评论(0编辑  收藏  举报
努力加载评论中...
历史天气查
点击右上角即可分享
微信分享提示