Python设置Word页面纸张方向为横向
作者:小龙在山东
这篇文章主要为大家详细介绍了Python设置Word页面纸张方向为横向的相关知识,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起
实现思路
通过python-docx的章节属性,就可以更改纸张方向、纸张尺寸。
import docx from docx.enum.section import WD_ORIENT from docx.shared import Cm document = docx.Document() section = document.sections[0] # 设置纸张大小为A4大小 section.page_width = Cm(21) section.page_height = Cm(29.7) # 设置纸张方向横向,横向是LANDSCAPE,竖向是PORTRAIT section.orientation = WD_ORIENT.LANDSCAPE # 设置章节宽高,也就是宽高互换 section.page_width, section.page_height = section.page_height, section.page_width document.save('landscape.docx')
更改纸张方向,分两步,第一步是设置section的orientation属性为LANDSCAPE,第二步是设置section的宽高互换。
相关链接
知识补充
除了上文的方法,小编还为大家整理了其他Python设置纸张方向的方法,希望对大家有所帮助
Python-docx设置纸张方向为横向
第一种,设置当前页面方向为横线
from docx import Document from docx.enum.section import WD_ORIENT #这里能够获取到当前的章节,也就是第一个章节 section = document.sections[0] #需要同时设置width,height才能成功 new_width, new_height = section.page_height, section.page_width section.orientation = WD_ORIENT.LANDSCAPE section.page_width = new_width section.page_height = new_height #保存docx文件 document.save('test3.docx')
第二种,设置所有章节的页面方向均为横向
from docx import Document from docx.enum.section import WD_ORIENT #获取本文档中的所有章节 sections = document.sections #将该章节中的纸张方向设置为横向 for section in sections: #需要同时设置width,height才能成功 new_width, new_height = section.page_height, section.page_width section.orientation = WD_ORIENT.LANDSCAPE section.page_width = new_width section.page_height = new_height document.save('test2.docx')
第三种,分别设置为每一章节的纸张方向,处理结果为:第一章节为纵向,第二章节为横向,第三章节为纵向
from docx import Document from docx.enum.section import WD_ORIENTATION, WD_SECTION_START # 导入节方向和分节符类型 document = Document() # 新建docx文档 document.add_paragraph() # 添加一个空白段落 section = document.add_section(start_type=WD_SECTION_START.CONTINUOUS) # 添加横向页的连续节 section.orientation = WD_ORIENTATION.LANDSCAPE # 设置横向 page_h, page_w = section.page_width, section.page_height section.page_width = page_w # 设置横向纸的宽度 section.page_height = page_h # 设置横向纸的高度 document.add_paragraph() # 添加第二个空白段落 section = document.add_section(start_type=WD_SECTION_START.CONTINUOUS) # 添加连续的节 section.orientation = WD_ORIENTATION.PORTRAIT # 设置纵向 page_h, page_w = section.page_width, section.page_height # 读取插入节的高和宽 section.page_width = page_w # 设置纵向纸的宽度 section.page_height = page_h # 设置纵向纸的高度 document.save('test.docx')
到此这篇关于Python设置Word页面纸张方向为横向的文章就介绍到这了,更多相关Python设置Word页面方向内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!