openpyxlで画像を扱う

openpyxlで画像の入ったExcelを扱うには,Pillowがインストールされた環境であることが必要です.

インポート

from openpyxl.drawing.image import Image

画像の挿入

img = Image('ファイル')
ws.add_image(img, 'A1')

リサイズ

original_ratio = img.height / img.width
img.width = 512
img.height = int( original_ratio * img.width )

コメント・シェア

openpyxlでExcel出力

カテゴリー 原稿整理

openpyxlはExcelの読み書きを行うためのPythonのライブラリです.
csvを用いてxlsx形式のファイルを自動出力させたいときに特に有用です.
ここではいくつかの機能について記します.

続きを読む
  • page 1 of 1
著者の絵

ねこせんせい

One cat just leads to another.
(Ernest Hemingway)


色鉛筆塗り


校正室