调整我从 facebook 获得的 img 的大小

发布于 2024-10-08 08:56:47 字数 74 浏览 0 评论 0原文

有没有一种好方法来获取大图像并调整其大小/对其进行切片,以便 img 不会在 php 中丢失其质量和纵横比?

10倍

is there a good way to get the large image and resize it / slice it so the img will not loss her quilaty and aspect ratio in php?

10x

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

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

发布评论

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

评论(1

千柳 2024-10-15 08:56:47

是的。

例如,可以使用 cURL 来获取图像。请参阅 https://www.php.net/manual/en/book.curl .php

可以使用 PHP GD img 函数调整大小 https:// /www.php.net/manual/en/book.image.php

或者为了获得更好的调整大小质量,您可以使用 ImageMagick 或 Cairo,但它们(至少 ImageMagick 绝对)也需要第三方工具。所以仅仅 PHP 是不够的。 https://www.php.net/manual/en/refs。 utilspec.image.php

Yes.

Getting the image can be done with cURL for example. See https://www.php.net/manual/en/book.curl.php

Resizing can be done with PHPs GD img functions https://www.php.net/manual/en/book.image.php

or for better quality on resizing you can use ImageMagick or Cairo, which (at least ImageMagick definitely) require third party tools as well though. So only PHP will not be sufficient there. https://www.php.net/manual/en/refs.utilspec.image.php

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