前沿拓展:
docx兼容包
office2007怎么打开docx
除了上述内容外,还可以通过 document.styles.add_style('textstyle', WD_STYLE_TYPE. PARAGRAPH) ,使用 add_style() 方法创建新的样式对象,后续就可以通过提供的属性进行样式设置,设置字体使用 font.size ,设置字体颜色为 font.color 。
第二在添加段落的时候,就可以应用该属性了。
from docx.shared import RGBColor
from docx.enum.style import WD_STYLE_TYPE
style = document.styles.add_style('textstyle', WD_STYLE_TYPE.PARAGRAPH)
# 字体大小
style.font.size = Pt(16)
# 字体颜色
style.font.color.rgb = RGBColor(66, 100, 0)
p1 = document.add_paragraph('神人橡皮擦',style=style)
页眉和页脚
页眉和页脚可以直接设置,参考代码如下所示
header = document.sections[0].header
header.add_paragraph('橡皮擦的页眉')
页脚设置
footer = document.sections[0].footer
————————————————
作者:梦想橡皮擦
原文链接:https://blog.csdn.net/hihell/article/details/121966945
拓展知识:
docx兼容包
office
2007
和
2010
文件的扩展名跟2003都不同的(在原来的扩展名后面加了个X,比如word,2003的扩张名是*.doc,2007就是*.docx),兼容包就是让你能打开这些文件
原创文章,作者:九贤生活小编,如若转载,请注明出处:http://www.wangguangwei.com/80534.html