调整我从 facebook 获得的 img 的大小
有没有一种好方法来获取大图像并调整其大小/对其进行切片,以便 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的。
例如,可以使用 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