2020
09-24
09-24
java如何用Processing生成马赛克风格的图像
首先使用PImage来实例化对象,再通过loadImage赋值,两层for循环遍历图片上的像素点,每隔5个像素点,画一个直径为3的圆。颜色通过pic.get(x,y)获取。最后通过save函数来保存图片。PImagepic;intspacing=5;voidsetup(){pic=loadImage("steve.jpeg");size(706,644);}voiddraw(){for(intx=spacing;x<width;x+=spacing){for(inty=spacing;y<height;y+=spacing){colorc=pic.get(x,y);fill(c);noStroke();...
继续阅读 >