gpt4 book ai didi

javascript - 使用 iTextSharp 将 javascript 添加到 pdf 文件

转载 作者:行者123 更新时间:2023-11-28 07:33:11 26 4
gpt4 key购买 nike

我想在 pdf 文件中嵌入一个 javascript 片段,以便从浏览器窗口打开它时立即打印。为了尝试实现这一目标,我遵循此示例 here.

我创建了一个辅助类,它有一个静态方法来处理此任务。我已经准备好了 pdf 文件路径字符串,可以传递到该方法中。我不明白的是它的输出流部分是如何工作的。我希望将更新后的 pdf 保存到我的服务器硬盘上。我不想将其流回我的浏览器。任何指导将不胜感激。

public class PdfHelper
{
public static void AddPrintFunction(string pdfPath, Stream outputStream)
{
PdfReader reader = new PdfReader(pdfPath);
int pageCount = reader.NumberOfPages;
Rectangle pageSize = reader.GetPageSize(1);

// Set up Writer
PdfDocument document = new PdfDocument();

PdfWriter writer = PdfWriter.GetInstance(document, outputStream);

document.Open();

//Copy each page
PdfContentByte content = writer.DirectContent;

for (int i = 0; i < pageCount; i++)
{
document.NewPage();
// page numbers are one based
PdfImportedPage page = writer.GetImportedPage(reader, i + 1);
// x and y correspond to position on the page
content.AddTemplate(page, 0, 0);
}

// Inert Javascript to print the document after a fraction of a second to allow time to become visible.
string jsText = "var res = app.setTimeOut(‘var pp = this.getPrintParams();pp.interactive = pp.constants.interactionLevel.full;this.print(pp);’, 200);";

//string jsTextNoWait = “var pp = this.getPrintParams();pp.interactive = pp.constants.interactionLevel.full;this.print(pp);”;
PdfAction js = PdfAction.JavaScript(jsText, writer);
writer.AddJavaScript(js);

document.Close();

}
}

最佳答案

如何完成这个任务,请看thisthis所以帖子。

基本上你应该有这样的东西:

var pdfLocalFilePath = Server.MapPath("~/sourceFile.pdf");
var outputLocalFilePath = Server.MapPath("~/outputFile.pdf");
using (var outputStream = new FileStream(outputLocalFilePath, FileMode.CreateNew))
{
AddPrintFunction(pdfLocalFilePath, outputStream);
outputStream.Flush();
}

关于javascript - 使用 iTextSharp 将 javascript 添加到 pdf 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28887795/

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