我正在尝试在不使用任何第三方 dll 的情况下阅读 PDF。
我在谷歌搜索但没有找到一个好的链接继续。
在一些链接中,我发现:我们无法读取 PDF 的内容,因为它是二进制格式。
有什么方法可以在没有第三方 dll 的情况下阅读 PDF,或者我们必须使用第三方 dll 来阅读 PDF?
您必须使用
我推荐PDFSharp的第 3 方解决方案
试试看 ,
byte[] yourByteData = .. assign your pdf data here ....
Response.ClearHeaders();
Response.Clear();
Response.AddHeader("Content-Type","application/pdf");
Response.AddHeader("Content-Length",yourByteData.Length.ToString());
Response.AddHeader("Content-Disposition","inline; filename=sample.pdf");
Response.BinaryWrite(yourByteData);
Response.Flush();
Response.End();