使用 php 从像素计算图像大小(以英寸或 dpi 为单位)

发布于 2024-10-03 16:52:40 字数 138 浏览 5 评论 0原文

假设 300dpi,我需要计算近似的图像尺寸(以英寸为单位)。

我心中有一个目标图像大小,我想向用户展示他们上传的图像是否足够,或者是否需要拉伸,并据此提供各种条件消息。

我已经有了以像素为单位的高度和宽度,只需要知道我猜的数学。

I need to calculate an approximate image size in inches assuming 300dpi.

I have a target image size in mind, and i want to show the user if the image they have uploaded is adequate, or will need to be stretched, and offer various conditional messages based off of this.

I already have the height and width in pixels, just need to know the math i guess.

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

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

发布评论

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

评论(2

屋檐 2024-10-10 16:52:40

DPI =“每英寸点数”。一个点=一个像素。

300 dpi 下的 300 像素:1 英寸。你可以解决这个问题:-)

DPI = "dots per inch". One dot = one pixel.

300 pixels in 300 dpi: 1 inch. You can work it out :-)

始终不够 2024-10-10 16:52:40

鉴于点 == 像素:

尺寸(英寸)= 尺寸(像素)/每英寸点数

因此,如果您的图像宽度为 900 像素,则在 300 dpi 下,它将以 3 英寸的尺寸打印

Given that dots == pixels:

size in inches = size in pixels / dots per inch

so if you have an image that's 900 pixels wide, at 300 dpi it will be printed at 3 inches.

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