我正在使用 Amyuni PDF Creator .Net 来使用Windows服务打印PDF。
Windows服务在本地系统用户帐户下运行。当我尝试使用上面的库进行打印时,它会以错误的字体打印PDF。查看附件(Wrong font in PDF printing)。
只有部分打印机(例如 Brother MFC-8890DW打印机)仍然存在此问题。
但对于具有上述Windows服务的同一台打印机,当取消选中上述打印机属性中的启用高级打印功能设置时,它会正确打印PDF。查看附件(Disable Advanced printing features)。
using (FileStream file1 = new FileStream(pdfFile, FileMode.Open, FileAccess.Read))
{
using (IacDocument doc1 = new IacDocument())
{
doc1.Open(file1, string.Empty);
doc1.Copies = 1;
bool printed = doc1.Print(printer, false);
}
}
但是,同样的Windows服务可以正确打印某些其他打印机(如HP LaserJet P1005)的PDF格式启用高级打印功能选中或取消选中。
答案 0 :(得分:3)
如果无法访问您正在使用的同一台打印机,很难确切知道发生了什么。我最好的猜测是,当"启用高级打印功能时,此打印机的驱动程序会遇到处理进程级字体(使用GDI函数AddFontResourceEx注册的字体)的问题。检查。这就是Amyuni PDF Creator如何使用嵌入在PDF文件中的字体,就是您所呈现的文件的情况。 可能的解决方法是使用attribute "PrintAsImage" of the Document class。
代码如下所示:
//set license key This is needed only with licensed version
acPDFCreatorLib.SetLicenseKey("your company", "your activation code");
//Create a new document instance
Amyuni.PDFCreator.IacDocument doc = new Amyuni.PDFCreator.IacDocument(null);
doc.AttributeByName("PrintAsImage").Value =1;
//Open the file here (...)
//Print to default printer
pdfCreator1.Document.Print("", false);
另一种方法是使用Amyuni PDF Creator将文件保存为xps,然后将xps文件发送到打印机:
// Create print server and print queue.
LocalPrintServer localPrintServer = new LocalPrintServer();
PrintQueue defaultPrintQueue = LocalPrintServer.GetDefaultPrintQueue();
defaultPrintQueue.AddJob("my document", "c:\\temp\\mytempfile.xps", true);
免责声明:我为Amyuni Technologies工作。