fixing Step 4 in epd_7in5_V2_test.py, where height and width were reversed
This commit is contained in:
parent
83a6cffae7
commit
fac69bd876
1 changed files with 1 additions and 1 deletions
|
@ -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))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue