π @community
GitHub Community
community community Mobile Discussions
Pinned Discussions
Categories
Mobile Discussions
Conversations related to the GitHub Mobile app. Triage, collaborate, and manage your work on GitHub from your mobile device.
Pinned to Mobile
Discussions
-
-
from PIL import Image, ImageDraw, ImageFont img = Image.new("RGB", (1080, 1350), (15, 20, 35)) draw = ImageDraw.Draw(img) font = ImageFont.load_default() draw.text((60, 60), "Daily Doctor Plan", fill="gold", font=font) tasks = [ "Wake up 5:30", "Fajr Prayer", "Exercise", "Healthy Breakfast", "Review Patients", "Hospital Shift", "Visit Patients", "Drink Water", "Healthy Lunch", "Medical Study", "Family Time", "Sleep 10 PM" ] y = 150 for task in tasks: draw.text((80, y), "β " + task, fill="white", font=font) y += 70 img.save("doctor_plan.png") print("Done!")
Bug Mobile Welcome π source:ui -
