缩略图生成/图像调整大小
您推荐使用什么 PHP 库来生成缩略图? 我需要它与 GD(不仅是 Imagick)一起使用,能够在仅给定一维时拉伸图像或保持纵横比,并且 - 最重要的是 - 能够裁剪和调整图像大小(生成缩略图时,我需要所有这些)比方说 128x128,所以我希望库在这种情况下裁剪图像) 您有什么建议?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
你可以试试这个: https://gist.github.com/342704/
示例用法:
you can try this: https://gist.github.com/342704/
Example usage:
我为我的框架编写了自己的 GD 包装器,phunction。一些例子:
还有其他不错的选择,例如 Asido 和 WideImage 但这对我有用,因为它是一种简单的方法,只有一个依赖项,您可以轻松地独立使用它:
水印和转换/显示(而不是保存)图像也是支持。
I coded my own GD wrapper for my framework, phunction. Some examples:
There are other good alternatives like Asido and WideImage but this one works for me, and since it is a simple method with only one dependency you can easily use it standalone:
Watermarking and converting / displaying (instead of saving) images is also supported.
在提问之前先使用搜索。关于保持宽高比< /a> 和关于裁剪。
Jus use search, before ask questions. About keeping aspect ratio and about cropping.