Forum Archive

White image after App update

Kluesi

Hi

After the last update of Pythonista i get a white image. The image file exists.

I have this code in setup()
self.aImage=load_image_file('image.jpg')

And in the draw() procedure
image(self.aImage,1,1,self.x_board,self.y_board)

And after the last update the image is only white.

How to fix this?

Thanks Jens

JonB

you will probably need to post more code. Have you checked that image self.aImage is not None?

Kluesi

Ok, it seems that some things changes. If I uses background(0,0,0) and after that the image(...) I only get a black image. So I delete the background instruction.

Thanks Jens