Unable to display image on tufty2040?

I am writing some code to display an image on the screen on the tufty 2040.

import jpegdec
from picographics import PicoGraphics, DISPLAY_TUFTY_2040

display = PicoGraphics(display=DISPLAY_TUFTY_2040)


# Create a new JPEG decoder for our PicoGraphics
j = jpegdec.JPEG(display)

# Open the JPEG file
j.open_file("squirrel.jpeg")

# Decode the JPEG
j.decode(1, 1, jpegdec.JPEG_SCALE_FULL)

# Display the result
display.update()

This code is trying to read the existing squirrel image on the examples provided by stock. Python file and image file exist on the tufty itself. The file will not work. It either doesnt print anything to shell or gives

Traceback (most recent call last):
  File "<stdin>", line 14, in <module>
OSError: [Errno 2] ENOENT

which hints that the file cannot be found which is odd. Any help is appreciated.

from picographics import PicoGraphics, DISPLAY_TUFTY_2040, PEN_RGB565
from jpegdec import JPEG

IMAGE_NAME1 = “superman-lego-minifigure-tree_320-240.jpg”

display = PicoGraphics(display=DISPLAY_TUFTY_2040, pen_type=PEN_RGB565)

j = JPEG(display)
j.open_file(IMAGE_NAME1)
j.decode()

display.update()

This is what I normal run – though my image matches the screen size