答案 0 :(得分:0)
在Processing 3.0中,您需要将大小指定为值(而不是计算变量):
size(1000, 500, P2D);
如果使用变量绝对至关重要,请考虑使用较旧版本的Processing,如2.2.1
答案 1 :(得分:0)
所以,像这样:
size(1, 1);
surface.setResizable(true);
surface.setSize(bgimage.width, bgimage.height);
// and when you're ready to actually load the image
image(bgimage, 0, 0, width, height);