您好,登錄后才能下訂單哦!
這篇文章主要講解了“python-docx處理Word必備工具是什么”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請(qǐng)大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“python-docx處理Word必備工具是什么”吧!
為什么會(huì)用到python-docx,因?yàn)榻螘r(shí)間下載了大量網(wǎng)文,但格式都是html的,我個(gè)人習(xí)慣使用word處理文字,于是就想法設(shè)法把html文檔轉(zhuǎn)換為word,首先要考慮的問題就是從html中提取的文字怎么存word里呢,之前用了pandoc直接轉(zhuǎn)換,帶轉(zhuǎn)換后的效果太不理想,沒什么格式,不符合我這種對(duì)word格式有嚴(yán)格要求強(qiáng)迫癥人的需要,于是就到處搜尋其他方法,終于功夫不負(fù)有心人,通過幾天研究python-docx,感覺很適合我,就一邊分析html文檔,一邊思考怎么用python-docx存想要的格式word,因?yàn)槲业膚ord排版,一般習(xí)慣 頁面要設(shè)置成5678頁邊距的,大小A4的,正文主標(biāo)題 方正小標(biāo)宋,其他標(biāo)題要么黑體,要么加粗,正文要首行縮進(jìn)2字符 仿宋_GB2312,頁腳要加頁碼顯示,大概這些樣式。
pip install python-docx
from docx import Document(文檔讀寫) from docx.shared import Pt,Cm,Inches (字體大小,不一定全用到) from docx.oxml.ns import qn(設(shè)置字體格式,分欄等用到) from docx.shared import RGBColor (設(shè)置字體顏色) from docx.enum.text import WD_ALIGN_PARAGRAPH (設(shè)置對(duì)其方式) from docx.enum.section import WD_ORIENTATION (紙張方向用到)
這樣設(shè)置完了之后有一個(gè)好處就是,后往里面寫入文檔的時(shí)候回自動(dòng)按這個(gè)格式,如果有需要改動(dòng)的再單獨(dú)寫入時(shí)改。
docment = docx.Document(docx_tamplate) # 讀取模板文檔,這里可以不用模板文檔,因?yàn)閜ython-docx沒法設(shè)置頁碼,所以我先建了一個(gè)有頁碼的空白文檔作為模板文檔 # 設(shè)置正文默認(rèn)格式 # 字體大小三號(hào)字(16) docment.styles['Normal'].font.size = Pt(16) # 字體仿宋_GB2312 docment.styles['Normal'].font.name = u'仿宋_GB2312' docment.styles['Normal']._element.rPr.rFonts.set(qn('w:eastAsia'), u'仿宋_GB2312') # 行間距 28磅 段前、段后不留空 docment.styles['Normal'].paragraph_format.line_spacing = Pt(29) docment.styles['Normal'].paragraph_format.space_before = Pt(0) docment.styles['Normal'].paragraph_format.space_after = Pt(0) # 首行縮進(jìn)2字符 docment.styles['Normal'].paragraph_format.first_line_indent = 406400 # 關(guān)閉孤行控制 docment.styles['Normal'].paragraph_format.widow_control = False # 設(shè)置頁面大小 docment.sections[0].page_height = Cm(29.7) # 設(shè)置A4紙的高度 docment.sections[0].page_width = Cm(21) # 設(shè)置A4紙的寬 # 設(shè)置頁邊距 docment.sections[0].top_margin = Cm(3.7) docment.sections[0].bottom_margin = Cm(3.4) docment.sections[0].left_margin = Cm(2.8) docment.sections[0].right_margin = Cm(2.6)
doc=Document() #創(chuàng)建一個(gè)空白文檔 p1=doc.add_paragraph() #初始化建立一個(gè)自然段 p1.alignment=WD_ALIGN_PARAGRAPH.CENTER #對(duì)齊方式為居中,沒有這句話默認(rèn)左對(duì)齊。另外右對(duì)齊:RIGHT,兩端對(duì)齊:JUSTIFY,分散對(duì)齊:DISTRIBUTE p1.paragraph_format.line_spacing=1.5 #設(shè)置該段落,行間距為1.5倍,也可以像上面設(shè)默認(rèn)值那樣用Pt單位來設(shè)置 p1.paragraph_format.first_line_indent=Inches(0.5) #段落縮進(jìn)0.5英寸,我還是習(xí)慣設(shè)置2字符 值為:406400 p1.paragraph_format.left_line_indent=Inches(0.5) #設(shè)置左縮進(jìn)0.5英寸。一般用不到 p1.paragraph_format.right_line_indent=Inches(0.5) #設(shè)置右縮進(jìn)0.5英寸,一般用不到 p1.paragraph_format.keep_together = False # 段前分頁 p1.paragraph_format.keep_with_next = False # 與下段同頁 p1.paragraph_format.page_break_before = True # 段中不分頁 p1.paragraph_format.widow_control = False # 孤行控制 p1.space_after=Pt(5) #設(shè)置段后距離為5磅 p1.space_before=Pt(5) #設(shè)置段前距離為5磅 run1=p1.add_run('你好') #寫入段落的中的文本“你好” run1.font.size=Pt(12) #單獨(dú)設(shè)置字體大小為24 run1.font.bold=True #樣式設(shè)置加粗 run1.italic=True #字形設(shè)置斜體 run1.font.underline = True # 下劃線 run1.font.color.rgb = RGBColor(255, 0, 0) # 顏色
#添加圖片,設(shè)置圖片大小 doc.add_picture(r"圖片路徑", width=Cm(10))
tab = doc.add_table(rows=5, cols=8, style='Table Grid') # 創(chuàng)建一個(gè)5行8列的表格,樣式為Table Grid tab.cell(0, 0).text = '表角' # 0行0列的內(nèi)容為表角 cell=tab.cell(0, 1).merge(tab.cell(0, 3)) # 合并0行1列到0行3列 p = cell.paragraphs[0] run = p.add_run(‘合并') #在單元格內(nèi)容創(chuàng)建一個(gè)段落,并寫入‘合并'文本 run.font.size = Pt(10.5) # 字體大小設(shè)置,和word里面的字號(hào)相對(duì)應(yīng)5號(hào)字 run.bold = True p.paragraph_format.alignment = WD_PARAGRAPH_ALIGNMENT.CENTER # 設(shè)置為加粗 居中顯示
感謝各位的閱讀,以上就是“python-docx處理Word必備工具是什么”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對(duì)python-docx處理Word必備工具是什么這一問題有了更深刻的體會(huì),具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是億速云,小編將為大家推送更多相關(guān)知識(shí)點(diǎn)的文章,歡迎關(guān)注!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。