black rectangle on the top right is a button try pressing it
python bitmap to list (right click in editor -> import): code below, its that small image: https://www.kenhub.com/thumbor/t62PF26bRFFZ8jZrbbAYjTERv7Q=/fit-in/413x413/filters:fill(FFFFFF,true):watermark(/images/watermark_only_413.png,0,0,0):watermark(/images/logo_url_sm.png,-10,-10,0):format(jpeg)/images/anatomy_term/skull/eEsfu70EOMx1TlBf5tYAiA_Go0bFvBvzClwSivuaiELg_head_01.png from PIL import Image image = Image.open('img.jpg').convert('RGB') data = list(image.getdata()) data = list(map(lambda e: hex(e[0]*65536+e[1]*256+e[2])[2:].rjust(6,'0'), data)) result = [str(image.width), str(image.height)] + data with open('output.txt', 'w') as f: f.write('\n'.join(result))