gpt4 book ai didi

c# - 使用 Microsoft Print to PDF 打印机打印为 PDF

转载 作者:行者123 更新时间:2023-12-05 07:36:46 31 4
gpt4 key购买 nike

我尝试将 ms 项目文件打印为 pdf,无需任何额外操作。

我尝试了几种解决方案都没有成功。

PrintDocument doc = new PrintDocument()
{
//DocumentName = safeDir + fileName,
PrinterSettings = new PrinterSettings()
{
// set the printer to 'Microsoft Print to PDF'
PrinterName = "Microsoft Print to PDF",

// tell the object this document will print to file
PrintToFile = true,


// set the filename to whatever you like (full path)
PrintFileName = safeDir + fileName,
}
};
doc.Print();

如果我尝试这种方法,如图所示 here ,我得到一个空的 pdf 文件。

手动打印成 PDF 效果很好。

有什么解决这个问题的建议吗?

最佳答案

我的 Spidey Senses 告诉我这很可能是由文件名中的逗号引起的

This is a known bug when printing to PDF. Use a different driver or don't put a comma in the file name

注意:它不仅来自代码,而且在某些情况下通常如此。

免责声明:这是一个完整而彻底的猜测


检查这些其他链接

Bug in "Print to PDF" and "Print to XPS" in Windows 10? comma in filename results in zero-byte file

Microsoft Print to PDF not working

Found a bug in Microsoft Print to PDF

Microsoft Print to PDF in Windows 10

关于c# - 使用 Microsoft Print to PDF 打印机打印为 PDF,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48985254/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com