JSP实现验证码(3)
来源:未知 责任编辑:责任编辑 发表时间:2013-12-18 11:35 点击:次
g.setColor(new Color(0XDCDCDC));
g.fillRect(0,0,WIDTH,HEIGHT);
for(int i=0;i<20;i++){
int x=(int) (Math.random()*WIDTH);
int y=(int) (Math.random()*HEIGHT);
int red=(int) (Math.random()*255);
int greed=(int) (Math.random()*255);
int blue=(int) (Math.random()*255);
g.setColor(new Color(red,greed,blue));
g.drawOval(x, y, 1, 0);
}
}
}
摘自 宋利兴的专栏
相关新闻>>
- 发表评论
-
- 最新评论 更多>>