专家,
我有一个模板docx报告,其中包含图像和标准格式。我使用docx做的只是搜索一些标签,并使用配置文件中的值替换它。
搜索& replace按预期工作,但输出文件丢失了所有图像和格式。你知道出了什么问题吗?我所做的只是修改example-makedocument.py,并将其替换为与我的docx文件一起使用。
我搜索了python.docx librelist的讨论,以及他们在github上的页面,有很多这样的问题,但仍然没有答案。
谢谢。
---我的剧本很简单---
from docx import *
from ConfigParser import SafeConfigParser
filename = "template.docx"
document = opendocx(filename)
relationships = relationshiplist()
body = document.xpath('/w:document/w:body',namespaces=nsprefixes)[0]
####### get config file
parser = SafeConfigParser()
parser.read('../TESTING1-config.txt')
######## Search and replace
print 'Searching for something in a paragraph ...',
if search(body, ''):
print 'found it!'
else:
print 'nope.'
print 'Replacing ...',
body = advReplace(body, '', parser.get('ASD', 'ASD'))
print 'done.'
####### #Create our properties, contenttypes, and other support files
title = 'Python docx demo'
subject = 'A practical example of making docx from Python'
creator = 'Mike MacCana'
keywords = ['python', 'Office Open XML', 'Word']
coreprops = coreproperties(title=title, subject=subject, creator=creator,keywords=keywords)
appprops = appproperties()
contenttypes = contenttypes()
websettings = websettings()
wordrelationships = wordrelationships(relationships)
savedocx(document, coreprops, appprops, contenttypes, websettings, wordrelationships, 'Welcome to the Python docx module.docx')
答案 0 :(得分:0)
我已经回复了similar question about python-docx。 Python docx并不意味着存储docx图像并将其导出。
Python Docx不是Docx的模板引擎。
答案 1 :(得分:0)
Python-docx仅复制原始Docx zip文件中的document.xml文件。其他所有内容都将被丢弃并从函数或预先存在的模板文件中重新创建。遗憾的是,它包含了负责映射图像的document.xml.rels文件。
我开发的oodocx模块复制了旧Docx中的所有内容,至少根据我的经验,可以很好地处理图像。