PHP图像尺寸
如何获取图像的宽度和高度?
我有 $variable = 'http://site.com/image.png"
想要将此图像的宽度设置为 $width
并将高度设置为 $height就像
: $variable = 'http://site.com/image.png"
$width = '300'; // image width is 300px
$height = '500'; // height is 500px
谢谢。
How to get width and height of an image?
I have $variable = 'http://site.com/image.png"
Want to get width of this image to $width
and height to $height
.
Like:$variable = 'http://site.com/image.png"
$width = '300'; // image width is 300px
$height = '500'; // height is 500px
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
getimagesize 函数。也许它会对你有所帮助。
getimagesize function. Maybe it will help you.