yes.
This commit is contained in:
parent
3505f7b119
commit
7b9e5d610a
1 changed files with 1 additions and 3 deletions
4
main.py
4
main.py
|
@ -90,9 +90,7 @@ def drawCanvas():
|
|||
songinfo.text((songinfo_offset_x,songinfo_offset_y+10), song_name)
|
||||
songinfo.text((songinfo_offset_x,songinfo_offset_y), artist_name)
|
||||
showImage(canvas)
|
||||
print(font.getsize(song_name)[0])
|
||||
if(font.getsize(song_name)[0]>160):
|
||||
print('scrolling text')
|
||||
x = threading.Thread(target=scrolling_text,args=(song_name,songinfo_offset_x,songinfo_offset_y+10))
|
||||
if(font.getsize(artist_name)[0]>160):
|
||||
y = threading.Thread(target=scrolling_text,args=(artist_name,songinfo_offset_x,songinfo_offset_y))
|
||||
|
@ -103,7 +101,7 @@ def scrolling_text(text,offset_x=0,offset_y=0):
|
|||
for i in range(160-font.getsize(text)[0]):
|
||||
scrolled_text_canvas = Image.new('RGB', (10, 32), color = 'black')
|
||||
scrolled_text = ImageDraw.Draw(scrolled_text)
|
||||
scrolled_text.text((-i,0), text)
|
||||
scrolled_text.text((i,0), text)
|
||||
showImage(scrolled_text_canvas, offset_x, offset_y)
|
||||
time.sleep(1)
|
||||
print('scrolled '+i)
|
||||
|
|
Loading…
Reference in a new issue