Home > php教程 > php手册 > body text

getimagesize获取图片尺寸实例

WBOY
Release: 2016-06-06 20:17:29
Original
1428 people have browsed it

这篇文章主要介绍了getimagesize获取图片尺寸的方法,实例讲述了getimagesize获取图片的尺寸、格式等参数的实现方法,具有一定的参考借鉴价值,需要的朋友可以参考

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

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

复制代码 代码如下:

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

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

Related labels:
source:php.cn
Statement of this Website
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
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!