如何使用python在Word文档中的特定位置插入图像?

时间:2018-11-17 21:38:06

标签: python ms-word docx

我的程序创建了一堆单词文件:它们包含有关学生的信息,例如姓名地址,电话号码...和条形码。 当我将QRCode插入为图片时,它会附加在文件末尾。我希望将其插入文本“ Barcode”的最右边。 我徒劳地寻找解决方案。 我在图片中插入了“解释”一词。抱歉,由于信息是机密信息,所以我将其隐藏了。 这是我的代码:

import uuid 
import pandas as pd
import pyqrcode 
from docx import Document
from docx.shared import Inches


def generateBarCode(length):
    return str(uuid.uuid4()).replace('-','')[0:length]


df=pd.DataFrame(pd.read_excel('Komplette- 
GastAccountFHZugangsdatenFertig.xlsx'))
array=[]
for i in range(len(df)):
    qr=pyqrcode.create(generateBarCode(8))
    array.append(qr)


df.insert(8,'Barcode',array)
x=['.png']

with pd.ExcelWriter('Komplette-GastAccountFHZugangsdatenFertig.xlsx') as 
writer :
   df.to_excel(writer,sheet_name='Sheet1')

for i in range(len(df)):
    document=Document()
    document.add_heading('Informationen')
    document.add_paragraph('Name : ' + df['Name'][i])
    document.add_paragraph('Vorname : ' + df['Vorname '][i])
    document.add_paragraph('Geschlecht : ' + df['Geschlecht'][i])
    document.add_paragraph('Adresse(in Marokko) : ' + df['Adresse (in 
Marokko)'][i])
    document.add_paragraph('Telefonnummer : ' + str(df['Telefonnummer'][i]))
    document.add_paragraph('E-Mailadresse : ' + str(df['E-Mailadresse'][i]))
    document.add_paragraph('Studiengang : ' + df['Studiengang'][i] )
    document.add_paragraph('Semester : ' + str(df['Semester'][i]))
    document.add_paragraph('Barcode : ')
    qr=df['Barcode'][i]

    qr.png(df['Name'][i]+df['Vorname '][i]+x[0])
    document.add_picture(df['Name'][i]+df['Vorname '] 
[i]+'.png',width=Inches(2.0))

    document.save(df['Name'][i]+' '+ df['Vorname '][i]+'.docx')

屏幕截图

enter image description here

谢谢

1 个答案:

答案 0 :(得分:0)

在python-docx here的文档中查看Document.add_picture的实现可以得出

def add_picture(self, image_path_or_stream, width=None, height=None):
    run = self.add_paragraph().add_run()
    return run.add_picture(image_path_or_stream, width, height)

使用此信息,您可以使用

document.add_paragraph('Barcode : ')
        .add_run()
        .add_picture(df['Name'][i]+df['Vorname '] [i]+'.png',width=Inches(2.0))

将图片添加到同一段落。我还没有测试过,但是我希望这可以解决问题。