本文介绍了是否有一种“获得”的简单方法PHP中的图像大小没有javascript?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
假设我有一个图像的URL,是否有一种简单的方法可以使用PHP获得它的高度/宽度?
如果可能,我不想使用javascript。
Say I have the URL of an image, is there an easy way to get it's height/width using PHP?I'd prefer not to use javascript if possible.
推荐答案
你可以使用
返回包含7个元素的数组。
Returns an array with 7 elements.
索引0和1分别包含
图像的宽度和高度。
Index 0 and 1 contains respectively the width and the height of the image.
list($width, $height, $type, $attr) = getimagesize("yourimage.jpg");
还有和用于分别获取图像的宽度和高度。
Also there is imagesx and imagesy functions to get width and height of images individually.
这篇关于是否有一种“获得”的简单方法PHP中的图像大小没有javascript?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!