gpt4 book ai didi

c# - 在没有 API(例如 iTextSharp)的情况下在 .NET 中填充 PDF 字段

转载 作者:太空宇宙 更新时间:2023-11-03 22:21:11 25 4
gpt4 key购买 nike

class mineTest
{
string pdfTemplate = @"c:\us.pdf";
public mineTest(Customer c, string output)
{
StreamReader sr = new StreamReader(pdfTemplate);
StreamWriter sw = new StreamWriter(output);
string content = sr.ReadToEnd();

content.Replace("(Customer name)/DA(/Verdana 10 Tf 0 g)/FT/Tx/Type/Annot/MK<<>>/V()/AP<</N 13 0 R>>>>", "(Customer name)/DA(/Verdana 10 Tf 0 g)/FT/Tx/Type/Annot/MK<<>>/V(John Johnson)/AP<</N 13 0 R>>>>");
sw.Write(content);
sw.Close();
sr.Close();
}
}

为什么上述代码无法生成有效的 PDF?

最佳答案

PDF 文件是二进制文件。您正在阅读它作为文本,然后重写文本。正如 SLaks 还指出的那样,您甚至没有对替换的文本做任何事情。

使用 PDF 库。尝试 PDFSharp .

关于c# - 在没有 API(例如 iTextSharp)的情况下在 .NET 中填充 PDF 字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3038978/

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