Python實現日曆壁紙動態標記

來源:互聯網
上載者:User

標籤:pytho   包括   日曆   bottom   位置   main   紅色   ado   cal   

遷自QQ空間 2014-08-08背景

可能這個標題不夠明確到底要實現什麼功能,下面詳細介紹一下。由於windows系統工作列的日期只有年、月、日,對於我來說,偶爾想看看農曆,所以每次都要去問度娘。後來發現一個不錯的辦法,就是找一個帶日曆(包括農曆、節氣)的壁紙,每個月只要換一次壁紙就可以了,如:

這樣的壁紙網上可以找到,一般日曆地區都在圖片的下方,是我截取了壁紙的左下部分。現在農曆的問題解決了,但是美中不足的是壁紙是死的,每次都要先看看今天是幾號,然後再去壁紙上對應。需求來了,就是每天能自動在壁紙上圈出今天是幾號。如:


  其實這個想法早就有了,但是一直懶得寫個東西出來,最近有空花了一天時間完成了這個小工具,下面說說具體的實現。

實現思路

起初想用C來實現,畢竟設定壁紙需要調用Win32 API C可能方便點,但後來發現C處理圖片沒有標準函數支援,還得找其他庫,而且對C也不是特別熟悉,正好最近在看Python,就用它練練手吧。

大致思路就是每次開機啟動程式,自動計算當前日期,然後在壁紙上計算標記,最後更新壁紙。其中主要包括兩個技術點:

1、在壁紙圖片上疊加標記圖片(紅色圓圈)

處理圖片這裡用到了PIL庫,首先通過當前日期計算標記圖片的位移位置,其中用到了三個基本參數:
marginTop、marginLeft、offset,參數都在設定檔中,方便根據具體電腦的解析度和壁紙修改;然後把標記圖片疊加到壁紙上產生新的圖片。

2、調用Win32 API更新壁紙

         這裡就簡單了,圖片產生好了,調用函數更新即可,這裡用到了pywin32 庫。具體代碼是:
   win32gui.SystemParametersInfo(win32con.SPI_SETDESKWALLPAPER,imgPathToday, 1+2)

詳細代碼

設定檔:config.cfg

[param]markImage=mark.pngbgImage=C:\Users\pc\Pictures\CalendarWallpaper\8\1.jpgmarginTop=665marginLeft=243offset=33


代碼檔案:DesktopCalendar.py

# encoding: utf-8 import os, ConfigParser, timeimport Imageimport win32gui, win32con def loadConfig():         config= ConfigParser.RawConfigParser()         config.read('config.cfg')         markImagePath= config.get('param', 'markImage')         imgPath= config.get('param', 'bgImage')         marginTop= config.getint('param', 'marginTop')         marginLeft= config.getint('param', 'marginLeft')         offset= config.getint('param', 'offset')         #print [markImagePath, imgPath, marginTop, marginLeft, offset]         config= {                   'markImagePath': markImagePath,                   'imgPath': imgPath,                   'marginTop': marginTop,                   'marginLeft': marginLeft,                   'offset': offset         }         returnconfig def markImage(cfg):         #get params         imgPath= cfg['imgPath']         markImagePath= cfg['markImagePath']         marginLeft= cfg['marginLeft']         marginTop= cfg['marginTop']         offset= cfg['offset']         #check file         today= time.localtime().tm_mday         imgPathToday= imgPath[0:-4] + '_'+str(today)+'.jpg';         ifos.path.isfile(imgPathToday):                   return         ifnot os.path.isfile(imgPath):                   print'Image file is not found!'                   return         ifnot os.path.isfile(markImagePath):                   print'MarkImage file is not found!'                   return         markImage= Image.open(markImagePath).convert('RGBA')         img= Image.open(imgPath)         layer= Image.new('RGBA', img.size, (0,0,0,0))         #offset         off= offset * (today - 1)         iftoday > 9 : off -= 6         left= marginLeft + off         layer.paste(markImage,(left, marginTop))         Image.composite(layer,img, layer).save(imgPathToday, quality=98)         #call win32 api to set wallpaper         win32gui.SystemParametersInfo(win32con.SPI_SETDESKWALLPAPER,imgPathToday, 1+2)# delete yesterdayif today > 1 :imgPathYesterday = imgPath[0:-4] + '_'+str(today-1)+'.jpg';if os.path.isfile(imgPathYesterday):os.remove(imgPathYesterday)  if __name__ == '__main__':         markImage(loadConfig())


開機啟動

最後把寫好的代碼打包成exe添加到啟動項就可以了,或者不想轉成exe,直接用py檔案也可以,寫個bat指令碼添加到啟動項也是一樣的。


Python實現日曆壁紙動態標記

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.