在浏览器中显示 PDF - 默认显示缩略图(“页面”)

发布于 2024-08-22 13:46:08 字数 184 浏览 4 评论 0原文

我目前正在使用 ITextSharp 将 PDF 写入网络浏览器,但我不知道如何默认在左侧显示缩略图。如果我单击“页面”按钮,它们会正确显示,但我似乎无法弄清楚默认情况下如何执行此操作。

我认为这可能是 adobe 浏览器 PDF 查看器中的一个设置,但我也找不到。

这可以通过编程方式完成吗?还是有一个设置让我无法理解?

I'm currently using ITextSharp to write a PDF to a web browser, but I cannot figure out how to, by default, show the thumbnails on the left side. If I click the "Pages" button they appear correctly, but I cannot seem to figure out how to do it by default.

I thought this might be a setting within adobe's browser PDF viewer, but I can't find that either.

Can this be programmatically done or is there a setting that is eluding me?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

迷爱 2024-08-29 13:46:08

如果有人好奇,这是我想出的解决方案(针对 ITextSharp)。

PdfWriter pdfWriter = ...
pdfWriter.ViewerPreferences = PdfWriter.PageModeUseThumbs;

In case anybody was curious, this is the solution I came up with (for ITextSharp).

PdfWriter pdfWriter = ...
pdfWriter.ViewerPreferences = PdfWriter.PageModeUseThumbs;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文