#python-3.x #docx #python-docx
Вопрос:
Вот мой код :
from docx import Document from docx.shared import Inches from datetime import date import excel2img excel2img.export_img("test.xlsx","image2.png", "Sheet1", "G13:J22") document = Document('filename.docx') paragraphs = document.paragraphs paragraph = paragraphs[0] run = paragraph.add_run() run.add_picture('image2.png', width=Inches(6.65), height=Inches(2.02)) document.save('new.docx')
И вот мой вывод слов выглядит так :
И мой вопрос : как поместить изображение над жирным шрифтом ? Я не могу поставить меньше 0 в paragraph = paragraphs[0]