master
Lukas Schulz 2020-12-20 00:27:33 +01:00
parent cb0e6c282a
commit ed81131956
1 changed files with 2 additions and 1 deletions

View File

@ -84,7 +84,8 @@ def drawCanvas():
canvas = Image.new('RGB', (192, 128), color = 'red')
canvas.paste(get_track(),(0,0))
songinfo = ImageDraw.Draw(canvas)
songinfo.text((10,10), song_name)
songinfo.text((32,0), song_name)
songinfo.text((32,10), artist_name)
showImage(canvas)