我可以在具有缩放功能的 DIV 中显示 PDF 吗?

发布于 2024-12-05 22:19:30 字数 169 浏览 0 评论 0原文

我有一个很大的 PDF,我需要在大小为 600px x 600px 的 div 标签内显示缩小 50% 的 PDF。我还需要为客户提供缩放功能。

我应该使用“object”标签吗?但是我可以减小“对象”内的 pdf 大小吗?

有 jquery 的例子或者其他的吗?

需要帮助。

I have a large PDF and I need to show it 50% reduced in size inside a div tag that is 600px 600px in size. I also need to offer the client a zoom function.

Should I use the "object" tag? But can I reduce the pdf size inside an "object"?

Is there a jquery example or anything out there?

Need help.

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

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

发布评论

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

评论(2

怪我入戏太深 2024-12-12 22:19:30
<div>
  <object data="febrero2012.pdf" type="application/pdf"  width="600px" height="600px">
    alt : <a href="febrero2012.pdf">febrero2012.pdf</a> 
  </object>
</div >

我还找不到设置默认缩放级别的方法。如果您找到方法,请告诉我。

<div>
  <object data="febrero2012.pdf" type="application/pdf"  width="600px" height="600px">
    alt : <a href="febrero2012.pdf">febrero2012.pdf</a> 
  </object>
</div >

I coudn't find the way to set a default zoom level yet. If you find a way, please let me know.

入画浅相思 2024-12-12 22:19:30

不可以。PDF 不能在 DIV 中显示,因为它们不是 html 或图像。您可以在服务器上将 PDF 转换为 html/images 并显示出来,就像 google 的“快速查看”功能一样。但一般来说,浏览器中的 PDF 渲染依赖于插件的存在(例如 Adob​​e Reader,尽管 Chrome 有内置渲染引擎)。插件不能显示在 div 中,只能嵌入/object/iframe 部分。

No. PDFs cannot be displayed in a DIV, as they're not html or an image. You can convert the PDF to html/images on the server and display that, just like google's "quick view" function does. But in general, PDF rendering in-browser is dependent on the presence of a plugin (e.g. Adobe Reader, Chrome's built-in rendering engine notwithstanding). Plugins can't be displayed in divs, just embed/object/iframe sections.

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