fixing Step 4 in epd_7in5_V2_test.py, where height and width were reversed

This commit is contained in:
Daniel Heldt 2021-06-16 07:44:32 +02:00
parent 83a6cffae7
commit fac69bd876

View file

@ -68,7 +68,7 @@ try:
time.sleep(2)
logging.info("4.read bmp file on window")
Himage2 = Image.new('1', (epd.height, epd.width), 255) # 255: clear the frame
Himage2 = Image.new('1', (epd.width, epd.height), 255) # 255: clear the frame
bmp = Image.open(os.path.join(picdir, '100x100.bmp'))
Himage2.paste(bmp, (50,10))
epd.display(epd.getbuffer(Himage2))