Home  >  Article  >  Backend Development  >  getimagesize获取图片尺寸实例_PHP

getimagesize获取图片尺寸实例_PHP

WBOY
WBOYOriginal
2016-05-31 19:27:44909browse

本文实例讲述了getimagesize获取图片尺寸的方法。分享给大家供大家参考。具体如下:

php有现成的函数getimagesize用于获取图像的尺寸,代码示例:

代码如下:

/* 1.jpg为你想获得其尺寸的图片 */
$arr = getimagesize("1.jpg");
/**
 * 这里$arr为一个数组类型
 * $arr[0] 为图像的宽度
 * $arr[1] 为图像的高度
 * $arr[2] 为图像的格式,包括jpg、gif和png等
 * $arr[3] 为图像的宽度和高度,内容为 width="xxx" height="yyy"
 */
/* 以下两行代码输出的内容都是一样的 */
echo "";
echo "";
?>

希望本文所述对大家的PHP程序设计有所帮助。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn