動感網頁相簿 python編寫簡單檔案夾內圖片瀏覽工具,
不知道大家有沒有這樣的體驗,windows電腦上查看一張gif圖,預設就把IE給開啟了,還彈出個什麼詢問項,好麻煩的感覺。所以為瞭解決自己的這個問題,寫了個簡單的檔案夾內圖片瀏覽工具。
以E盤某一檔案夾為例
實現思路
業務代碼
# coding:utf-8import sysreload(sys)sys.setdefaultencoding('utf8')# __author__ = '郭 璞'# __date__ = '2016/8/5'# __Desc__ = 自動產生網頁相簿import os# 呵呵了,原來有標準庫中的walk方法。那麼這個方法就獲得一個檔案夾下的圖片檔案吧def getFiles(filepath): files = [] if os.path.isdir(filepath): for file in os.listdir(filepath): if os.path.isdir(file): getFiles(file) elif file.endswith('.jpg') or file.endswith('.png') or file.endswith('.gif'): files.append(filepath + str(file)) elif os.path.isfile(filepath): files.append(filepath) return files# 擷取給定目錄下所有以.jpg .png .gif結尾的檔案,並補全路徑儲存到列表中輸出def recourse(filepath): files = [] for fpathe, dirs, fs in os.walk(filepath): for f in fs: if f.endswith('.jpg') or f.endswith('.png') or f.endswith('.gif'): files.append(os.path.join(fpathe, f)) return files# 產生網頁源碼檔案,指定def generate(files, shuffle=False): template_start = ''' <html><head><meta charset='utf-8'><title>網頁版相簿</title><link rel="stylesheet" type="text/css" href="csshake-slow.min.css"> <link rel="stylesheet" type="text/css" href="http://csshake.surge.sh/csshake-slow.min.css"></script></head><body> ''' template_body = '' # 如果指定亂序,就亂序列表中的資料 if shuffle == True: from random import shuffle shuffle(files) for file in files: template_body += '<a href="' + file + '"><img class="shake-slow" src="' + file + '" style="width:64px;height:auto;"></a>' template_end = ''' </body></html> '''% html = template_start + template_body + template_end return html# 產生html檔案,並輸出到指定的目錄def write2File(filepath, data): file = open(filepath, 'wb') file.write(data) file.close() print 'Write to file Scuuess!'if __name__ == "__main__": # E:\\Picture\\LOFTER\\ filepath = 'E:\\Picture\\LOFTER\\' files = recourse(filepath=filepath) for item in files: print item html = generate(files, True) output_path = r'C:\Users\Administrator\Desktop\test.html' write2File(filepath=output_path, data=html) print 'HTML相簿檔案已產生在案頭,請查看'
總結
•首先說一下缺點:
◦缺點很明顯,對於中文支援的不夠好,因為查看圖片大圖的時候是以超連結的形式出現的,所以會發生亂碼的情況。
◦然後是優點:
優點不是很明顯,因為如果一個檔案夾下面有很多的子檔案夾,或者圖片很多的時候,就會很慢了。
•然後說一下可以改進的地方
◦引入JQuery,添加雙擊事件相應,實現雙擊刪除不想要的圖片
◦使用多線程的方式運行代碼,加快網頁的產生速度
最後,我想說的是,雖然這是個娛樂性質的小東西,但是多發揮一下想象力,不斷地完善,對我們開發而言,一定會有協助的。
以上就是本文的全部內容,希望對大家的學習有所協助,也希望大家多多支援幫客之家。