使用spire.doc将docx转换为PDF

本文关键字:转换 PDF docx spire doc 使用 | 更新日期: 2023-09-27 18:04:38

我需要将word文档转换为PDF。我使用的spire.doc也是出于同样的目的。一切都很好,除了一个。我有一个标题部分在Word文档中定义,转换后在PDF中缺失。有人能帮我解决这个问题吗?

谢谢

使用spire.doc将docx转换为PDF

你试过了吗:

Section section = document.Sections[0];
HeaderFooter header = section.HeadersFooters.Header;
Paragraph HParagraph = header.AddParagraph();
TextRange HText = HParagraph.AppendText("Spire.Doc for .NET");
//Set Header Text Format
HText.CharacterFormat.FontName = "Algerian";
HText.CharacterFormat.FontSize = 15;
HText.CharacterFormat.TextColor = Color.RoyalBlue;
//Set Header Paragraph Format
HParagraph.Format.HorizontalAlignment = HorizontalAlignment.Left;
HParagraph.Format.Borders.Bottom.BorderType=BorderStyle.ThickThinMediumGap;
HParagraph.Format.Borders.Bottom.Space = 0.05f;
HParagraph.Format.Borders.Bottom.Color = Color.DarkGray;

这里的指令