1. 程式人生 > 實用技巧 >python 讀取Excel檔案裡面的圖片

python 讀取Excel檔案裡面的圖片

python 提取Excel中的圖片

注意:下面的方法只能讀取到副檔名為 .xlsx 的Excel. xls不行。

1、將待讀取的excel檔案字尾名改成zip,變成壓縮檔案。

2、再解壓這個檔案。

3、在解壓後的資料夾中,就有excel中的圖片。

4、這樣讀excel中的圖片,就變成了讀資料夾中的圖片了,和普通檔案一樣,可以做各種處理。

'''
File Name:  readexcelimg
Author:   tim
Date:    2018/7/26 19:52
Description: 讀取excel中的圖片,列印圖片路徑
  先將excel轉換成zip包,解壓zip包,包下面有資料夾存放了圖片,讀取這個圖片
''' import os import zipfile # 判斷是否是檔案和判斷檔案是否存在 def isfile_exist(file_path): if not os.path.isfile(file_path): print("It's not a file or no such file exist ! %s" % file_path) return False else: return True # 修改指定目錄下的檔案型別名,將excel字尾名修改為.zip def change_file_name(file_path, new_type='.zip
'): if not isfile_exist(file_path): return '' extend = os.path.splitext(file_path)[1] # 獲取檔案拓展名 if extend != '.xlsx' and extend != '.xls': print("It's not a excel file! %s" % file_path) return False file_name = os.path.basename(file_path) # 獲取檔名 new_name = str(file_name.split('
.')[0]) + new_type # 新的檔名,命名為:xxx.zip dir_path = os.path.dirname(file_path) # 獲取檔案所在目錄 new_path = os.path.join(dir_path, new_name) # 新的檔案路徑 if os.path.exists(new_path): os.remove(new_path) os.rename(file_path, new_path) # 儲存新檔案,舊檔案會替換掉 return new_path # 返回新的檔案路徑,壓縮包 # 解壓檔案 def unzip_file(zipfile_path): if not isfile_exist(zipfile_path): return False if os.path.splitext(zipfile_path)[1] != '.zip': print("It's not a zip file! %s" % zipfile_path) return False file_zip = zipfile.ZipFile(zipfile_path, 'r') file_name = os.path.basename(zipfile_path) # 獲取檔名 zipdir = os.path.join(os.path.dirname(zipfile_path), str(file_name.split('.')[0])) # 獲取檔案所在目錄 for files in file_zip.namelist(): file_zip.extract(files, os.path.join(zipfile_path, zipdir)) # 解壓到指定檔案目錄 file_zip.close() return True # 讀取解壓後的資料夾,列印圖片路徑 def read_img(zipfile_path): if not isfile_exist(zipfile_path): return False dir_path = os.path.dirname(zipfile_path) # 獲取檔案所在目錄 file_name = os.path.basename(zipfile_path) # 獲取檔名 pic_dir = 'xl' + os.sep + 'media' # excel變成壓縮包後,再解壓,圖片在media目錄 pic_path = os.path.join(dir_path, str(file_name.split('.')[0]), pic_dir) file_list = os.listdir(pic_path) for file in file_list: filepath = os.path.join(pic_path, file) print(filepath) # 組合各個函式 def compenent(excel_file_path): zip_file_path = change_file_name(excel_file_path) if zip_file_path != '': if unzip_file(zip_file_path): read_img(zip_file_path) # main if __name__ == '__main__': compenent('/Users/Desktop/test/people.xlsx')