如何按如下方式调整图像大小?
我需要将图像大小调整为定义的宽度和高度,但如果图像较大,则将底部裁剪到高度,如果图像较小,则在底部添加空白。如何借助 PHP 的 GD 来实现这一点?
I need to resize an image to a defined width and height but crop the bottom to the height if it is larger or add blank space to the bottom if it is smaller. How to accomplish that with the help of PHP's GD?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我为此提供了一个功能: PHP/GD Imagestyle
您可以完全按照以下描述创建缩略图:
但如果您需要更复杂的东西,您可以使用:
I maid a function for this: PHP/GD Imagestyle
You can create thumbnails exactly as you described with the following:
But also if you need something more complicated you can use:
您可以使用 phpThumb 库。
看看 https://github.com/masterexploder/PHPThumb/wiki/Basic-Usage< /a>
You can use phpThumb library.
Take a look https://github.com/masterexploder/PHPThumb/wiki/Basic-Usage