end0tknr's kipple - web写経開発

太宰府天満宮の狛犬って、妙にカワイイ

2024-05-22から1日間の記事一覧

openpyxl + pillow for python で excelに含まれる画像を抽出

import openpyxl import PIL def main(): excel_file = './test_includeing_img.xlsx' wb = openpyxl.load_workbook(excel_file) for xlsx_img in wb['Sheet1']._images: #print( xlsx_img.path ) # sheet中の座標 print( xlsx_img.anchor._from.col, xlsx_i…