找到按比例调整大小的暗淡,该暗淡应小于或等于所需的拇指暗淡
我的 php 需要调整图像大小,以便调整大小后的宽度和高度应小于或等于预期的调整大小值。
考虑源图像是 680x520
所需的缩略图大小应 <= 300x200
我想找到调整大小的比例值,该值应小于或等于 300x200。
它可以是 299x199 或 300x200,但宽度不超过 300,高度不超过 200。
所以两者都应该小于或等于所需的大小。
公式可能是什么?
I php need to resize an image so that both width and height after resize should be less than or equal to the expected resized values.
consider the source image is 680x520
The needed thumbmail size should be <= 300x200
I want to find the resized proportional value which should be less than or equal to 300x200.
it can be like 299x199 or 300x200 but not greater than 300 in width and 200 in height.
So both should be less than or equal to the needed size.
What could be the formula?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
编辑:
我没有找到你给我的相反的任何例子。如果您有的话,请告诉我,我会检查上面的脚本是否需要任何修改。
EDIT:
I didn't find any example for the reversed that you gave me. If you have one, please tell me and I will check to see if the above script needs any modifications.
也许离题了,但是对于图像处理来说确实很容易使用:
宽图像
Maybe offtopic, but for image manipulation realy easy to use:
Wide Image