master
Lukas Schulz 2020-12-20 00:47:41 +01:00
parent 523f413af2
commit d7151da47f
1 changed files with 3 additions and 1 deletions

View File

@ -94,7 +94,9 @@ def drawCanvas():
if(ImageDraw.textlength(artist_name)>160):
y = threading.Thread(target=scrolling_text,args=(artist_name,songinfo_offset_x,songinfo_offset_y))
def scrolling_text(text,offset_x=0,offset_y=0):
def scrolling_text(text,offset_x=0,offset_y=0):
for i in range(160-ImageDraw.textlength(text)):
scrolled_text_canvas = Image.new('RGB', (10, 32), color = 'black')
scrolled_text = ImageDraw.Draw(scrolled_text)