SD Card Brain Image not working

I have a file called BRAIN_IMAGE.png in the sd card of my Vex V5 Brain


However when I use this line of code to display it:
brain.screen.draw_image_from_file('BRAIN_IMAGE.png', 0, 0)
It doesn’t display it and there is no error.
Could someone suggest why this might be?
Thanks

SuhJae made a converter to make the image uploadable directly through the project file. I suggest using that.

Thats is only for c++. I am using python. Also, their solution makes the project file much larger for no reason since the sd card should work since I have one.

Don’t use uppercase.
rename the image and save to the SD card as brain_image.png

brain.screen.draw_image_from_file('brain_image.png',0,0)

No idea why, probably some limitation of the embedded file system.

2 Likes

Thanks for you help. I thought it would be something odd lile that