c#调用的saveas将word转PDF,为什么在本地转正确,在服务器上转完,本来只有标题是加粗的,现在PDF上显示都是加粗
缺少对应的字体吧。
可以试试Spire.Doc转PDF效果可以,服务器不用安装office
using System;
using Spire.Doc;
using Spire.Doc.Documents;
namespace DoctoPDF
{
class toPDF
{
static void Main(string[] args)
{
Document document = new Document();
document.LoadFromFile(@"E:\work\documents\TestSample.docx");
document.SaveToFile("toPDF.PDF", FileFormat.PDF);
}
}
}