Magento 产品 pdf 下载

发布于 2024-11-04 16:39:14 字数 94 浏览 0 评论 0原文

我需要在我的产品详细信息页面中包含一个 pdf 图标,以便他们可以将其作为摘要下载,最好使用 print.css

这样的远程方式可能吗?

干杯

I need to include a pdf icon within my product details page so they can download it as a summary, ideally using the print.css

Is anything like this remotley possible?

Cheers

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

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

发布评论

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

评论(1

暮年慕年 2024-11-11 16:39:14

您可以使用 Magento 无路由控制器来选取“.pdf”类型的任何文件,然后提供匹配的 PDF 文件。
可以使用 wkhtmltopdf 即时生成这些 PDF 文件 - Webkit 渲染器在创建 PDF 方面做得非常好。

我还更改了一些模板代码来检测引用网址是否与服务器 URL 相同。如果是,那么它是 wkhtmltopdf 程序,而不是真正的客户。在这种情况下,模板代码会输出页眉/页脚的打印版本,其中包括矢量线条图 (SVG)。

在产品页面上,我使用类似的技术添加了员工的产品图像。所有这些都很好地体现在 PDF 中,品牌特定字体(安装在服务器上)也是如此。

显然,您的解决方案需要定制和测试,但是,我认为这种努力是有回报的,因为人们确实带着他们想要的产品的打印件走进商店。

You can use the Magento no-route controller to pick up any files of type '.pdf' and then serve up a matching PDF file.
Generating those PDF files can be done on the fly with wkhtmltopdf - the Webkit renderer that does a very nice job of creating PDFs.

I also changed some of my template code to detect if the referrer URL was the same as the server URL. If it is then it is the wkhtmltopdf program and not a genuine customer. When this is the case the template code puts out the print version of the headers/footers and those include vector line art (SVG).

On the product pages, with a similar technique I included the hires product images. All of these come through quite nicely to the PDF as do brand specific fonts (that are installed on the server).

Clearly your solution will need customisation and testing, however, I think the effort pays off because people do walk into shops with printouts of products that they want.

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