您好,登錄后才能下訂單哦!
這篇文章主要介紹Python怎么判斷圖片格式并轉換,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
代碼如下:
import Image from datetime import datetime import os str = '/home/dltest/caffe/examples/sgg_datas/images/result_test/zutest/' + datetime.now().strftime("%Y%m%d_%H%M%S") while True==os.path.exists(str): str = str + datetime.now().strftime("%Y%m%d_%H%M%S") os.makedirs(str) #創建文件夾 imageFile = '/home/dltest/caffe/examples/sgg_datas/images/result_test/zutest/20form1.bmp' #圖片路徑 import imghdr imgType = imghdr.what(imageFile) #獲取圖像類型,返回bmp,jpg等 type1 = cmp(imgType, 'bmp') #判斷是否為bmp,jpg類型,若字符相等則返回值為 0 type2 = cmp(imgType,'jpeg') type3 = cmp(imgType,'jpg') type = type1 *type2 *type3 #判斷是否為三種類型中的一類 if type != 0 : #進行圖像類型轉換,轉換為 jpg格式 im = Image.open(imageFile) str2 = str + '/' + '1.jpg' #會自動替換原來的1.jpg im.save(str2) print('1')
以上是“Python怎么判斷圖片格式并轉換”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。