使图像在浏览器和打印中看起来正确?

发布于 2024-10-16 13:02:33 字数 139 浏览 2 评论 0原文

我在我的商业网站上动态创建发票。发票的左上角是我公司的标志。我需要该徽标在网络上正确显示,而且打印清晰(我直接从加载的页面上打印)。目前,由于该图像是 72 ppi 的网络本机图像,因此打印效果不清晰。

如何打印清晰的徽标,同时在网页上正确显示它?

I dynamically create an invoice off my commerce site. At the top left of the invoice is my company logo. I need that logo to display correctly on the web, but also print sharp (I print directly off loaded page). Currently because the image is web native at 72 ppi, it does not print sharp.

How can I print the logo sharp while also displaying it correctly on the web page?

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

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

发布评论

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

评论(1

巡山小妖精 2024-10-23 13:02:33

尝试将徽标放大 4 倍。假设徽标为 72x72 像素。将徽标设置为 288x288 并将其包含在您的发票 html 中,因为

<img src="logo.gif" style="width:72px;height:72px;"/>

它应该被浏览器缩小并打印得更好一些。如果它有效,并且您需要更高的分辨率,只需将徽标设置为您需要的大小即可。

Try making the logo 4 times bigger. Say the logo is 72x72 pixels. Make the logo 288x288 and include it in your invoice html as

<img src="logo.gif" style="width:72px;height:72px;"/>

It should be downsized by the browser and printed a bit better. If it works, and you need higher resolution, just make the logo as large as you need.

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