我可以在具有缩放功能的 DIV 中显示 PDF 吗?
我有一个很大的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我还找不到设置默认缩放级别的方法。如果您找到方法,请告诉我。
I coudn't find the way to set a default zoom level yet. If you find a way, please let me know.
不可以。PDF 不能在 DIV 中显示,因为它们不是 html 或图像。您可以在服务器上将 PDF 转换为 html/images 并显示出来,就像 google 的“快速查看”功能一样。但一般来说,浏览器中的 PDF 渲染依赖于插件的存在(例如 Adobe 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.