python初心者です。
python-docxとopenpyxlを使ってExcelファイルから写真とテキストデータを抜き取って
ワードファイルに反映させるプログラムを作成中です。
Excelファイルから写真とテキストを抜け出せたのですが、zipfileを使って抜き出した写真が
python-docxのadd_picture(path,width=")で挿入できません。他の写真で試したところ
正常に処理されました。コンソールではZeroDivisionErrorと表示されました。
ひとつ気になったのは挿入できた写真とできなかった写真を比べるとプロパティで見ると
挿入できなかった写真は水平方向の解像度が表示されていませんでした。ピクセル数は一緒です。
考えられる原因としては何が有るでしょうか。
宜しくお願い致します。
----------------------------------------ーーーーーーーーーーーーーーーーーーーーーーーー
def setValue(texts,pictures,tableNo):
"""写真を1ページずつ写真とコメントを挿入する関数
コメントと写真を配列で渡し、ページ数を渡す(再帰処理で渡す予定)
"""
#各ページの要素を定義
table = document.tables[tableNo] #ページ数を定義
textNull = "" #テキストを消す時に必要
picNum = 1 #初期値
rowsNum = 1 #初期値
for i in range(3):
if len(pictures) >= picNum:
pictureObj = table.rows[rowsNum].cells[4].text
Pic = table.rows[rowsNum].cells[2].paragraphs[0].runs[0]
comment = table.rows[rowsNum].cells[2].paragraphs[0].runs[0].text
firstText = texts[i]
picture = pictures[i]
table.rows[rowsNum].cells[2].paragraphs[0].runs[0].text = table.rows[rowsNum].cells[2].paragraphs[0].runs[0].text.replace(comment,textNull)
table.rows[rowsNum].cells[2].paragraphs[0].runs[0] = Pic.add_picture(picture,width=Inches(4.1))
table.rows[rowsNum].cells[4].text = table.rows[rowsNum].cells[4].text.replace(pictureObj,firstText)
else:
pictureObj = table.rows[rowsNum].cells[4].text
comment = table.rows[rowsNum].cells[2].paragraphs[0].runs[0].text
table.rows[rowsNum].cells[2].paragraphs[0].runs[0].text = table.rows[rowsNum].cells[2].paragraphs[0].runs[0].text.replace(comment,textNull)
table.rows[rowsNum].cells[4].text = table.rows[rowsNum].cells[4].text.replace(pictureObj,textNull)
rowsNum += 2
picNum += 1
------------------------------------------ーーーーーーーーーーーーーーーーーーーーーーー
あなたの回答
tips
プレビュー