Added note on hiding the written date

Hiding the explicit written date (e.g. Sun, 25 Nov 18), is now easy. Just go to the correct section of thie function and uncomment the lines, as suggested in the details of the function.
This commit is contained in:
Ace 2018-11-25 23:23:41 +01:00 committed by GitHub
parent 1d6634ee9f
commit 23c682821c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -139,6 +139,7 @@ def main():
pass
"""Drawing today's date at the top left corner"""
"""Uncomment this section (the following 5 lines) to hide date at top left corner"""
space1=Image.new('1', (115,25), color=255)
date = ImageDraw.Draw(space1)
date.text((2, 3), (time.strftime('%a %-d %b %y')), font=font, fill=0)