使用Python docx库自动调整Word中的图片大小。
使用Python docx库中的Image类和Shape类的属性进行操作,将图片的大小设置为页面的宽度,实现图片自动适应页面大小。
代码示例:
from docx import Document
from docx.shared import Cm
doc = Document('example.docx')
for paragraph in doc.paragraphs:
for run in paragraph.runs:
if run.element.tag.endswith('}r'):
for tup in run.element.xpath('.//wp:docPr'):
if 'inline' in tup.attrib.values():
try:
shape_id = run._r.xpath('.//a:blip')[0].attrib['{%s}embed' % doc.part.related_parts[
run._r.xpath('.//a:blip')[0].attrib['{%s}link' % doc.part.nsmap['r']].rId].reltype]
shape_size = doc.part.related_parts[shape_id]._element.xpath('.//a:ext')[0]
cx = shape_size.get('cx')
cy = shape_size.get('cy')
cx, cy = int(cx), int(cy)
if cx > doc.page_width * 9525:
shape_size.set('cx', str(doc.page_width * 9525))
shape_size.set('cy', str(cy * doc.page_width * 9525 // cx))
except:
pass
doc.save('example.docx')
注意:上面的代码仅对InlineShape(布局与文字相邻的图片)进行了调整,如果需要调整其他类型的图片,请将代码改为适当的方式来实现。