yes.
This commit is contained in:
parent
37a7991c58
commit
fa9f0fa3a9
1 changed files with 1 additions and 1 deletions
2
main.py
2
main.py
|
@ -104,7 +104,7 @@ def drawCanvas():
|
|||
def scrolling_text(text,offset_x=0,offset_y=0):
|
||||
for i in range(font.getsize(text)[0]-160):
|
||||
scrolled_text_canvas = Image.new('RGB', (10, 32), color = 'black')
|
||||
scrolled_text = ImageDraw.Draw(scrolled_text)
|
||||
scrolled_text = ImageDraw.Draw(scrolled_text_canvas)
|
||||
scrolled_text.text((-i,0), text)
|
||||
showImage(scrolled_text_canvas, offset_x, offset_y)
|
||||
time.sleep(1)
|
||||
|
|
Loading…
Reference in a new issue