图片跟随鼠标移动。image()中图片坐标设为(mouseX,mouseY),当鼠标移动时,图片会跟随移动,产生像素被拉伸的效果。
PImage phot1;
void setup() {
size(300,300);
bckground(0); //背景为黑色
imageMode(CENTER); //图片模式为中心
photo1=loadImage("Example1.jpg");
}
void draw() {
image(photo1,mouseX,mouseY,150,150); //图片坐标设为鼠标坐标
}