本帖最后由 风子是我 于 2024-11-1 15:17 编辑
将SVG转换为图像格式(如PNG或JPEG)。
使用Python库(如python-docx)将图像插入Word文档。
举个例子:
[Python] 纯文本查看 复制代码 from docx import Document
from PIL import Image
svg_file = 'path_to_your_svg_file.svg'
png_file = 'path_to_your_output_png_file.png'
svg_to_png = Image.open(svg_file)
svg_to_png.save(png_file)
doc = Document()
doc.add_picture(png_file)
doc.save('output_document.docx')
PDF转WORD
[Python] 纯文本查看 复制代码 from pdf2docx import Converter
pdf_file = 'path_to_your_pdf_file.pdf'
word_file = 'path_to_your_output_word_file.docx'
cv = Converter(pdf_file)
cv.convert(word_file, start=0, end=None)
cv.close() |