1234567891011121314151617181920212223242526272829303132333435 |
- #!/usr/bin/env python
- #version : 2023.04.07
- #language : ch
- import time
- from maix import camera, display, image
- image.load_freetype("/root/preset/fonts/SourceHanSansCN-Regular.otf")
- month={
- "Jan":"1月",
- "Feb": "2月",
- "Mar": "3月",
- "Apr": "4月",
- "May": "5月",
- "Jun": "6月",
- "Jul": "7月",
- "Aug": "8月",
- "Sep": "9月",
- "Oct": "10月",
- "Nov": "11月",
- "Dec": "12月",
- }
- week={
- "Mon": "星期一",
- "Tue": "星期二",
- "Wed": "星期三",
- "Thu": "星期四",
- "Fri": "星期五",
- "Sat": "星期六",
- "Sun": "星期日",
- }
- while True:
- hello_img = image.new(size = (240, 240), color = (0, 0, 0), mode = "RGB")
- date = time.asctime().split(" ")
- hello_img.draw_string(20, 108, date[5]+"年"+month[date[1]]+date[3]+"日 "+date[4]+" "+week[date[0]], scale = 1.0, color = (255, 255, 255), thickness = 1)
- display.show(hello_img)
- time.sleep(1)
|