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は画像のフォーマットを判断して変換します。変換した画像を作成したフォルダに保存すると、編集して皆さんに共有する内容になります。