使用 PHP 按比例调整图像大小
假设我有一些方形图像,我想将其调整为比例为 16:9 的矩形图像。使用 PHP 实现此目的的最佳方法是什么?
Say I've got some square images which I want to resize to rectangle images with the ratio 16:9. What is the best way to do it using PHP?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用imagecopyresampled(资源$ dst_image,资源$ src_image,int $ dst_x,int $ dst_y,int $ src_x,int $ src_y,int $ dst_w,int $ dst_h,int $ src_w,int $ src_h)
更多信息请访问 https://www.php.net/imagecopyresampled
you could use
imagecopyresampled ( resource $dst_image , resource $src_image , int $dst_x , int $dst_y , int $src_x , int $src_y , int $dst_w , int $dst_h , int $src_w , int $src_h )
more at https://www.php.net/imagecopyresampled
试试这个...不使用 GD,但我认为它对你有用。
Try this... Not Using GD but i think it will work for u.