causes flickering but the second does not, however my main project uses createGraphics() which requires P2D or P3D
void setup(){
PImage flower = loadImage("bloom.jpg");
size(897, 565); //Fixed line version that doesnt work in main project I have
image(flower, 472+26,86, 189,189);
}
An even bigger problem is that if I add a draw loop to this the image just disappears
I don’t think it is recommended to do any drawing in setup(). It is meant to, you know set things up for action in draw() cycles. And size() function should be the very first thing in setup()