欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

php 获取图片高宽与宽度代码

程序员文章站 2022-05-13 23:04:59
...
php 获取图片高宽与宽度代码 在php中要获取图片的高与宽度,php自身带有一个函数getimagesize,他会返回一个数组,数组下标1为图片高度,数组下标0一宽度哦。

php教程 获取图片高宽与宽度代码
在php中要获取图片的高与宽度,php自身带有一个函数getimagesize,他会返回一个数组,数组下标1为图片高度,数组下标0一宽度哦。
*/
//you do not need to alter these functions

function getheight($image) {
$size = getimagesize($image);
$height = $size[1];
return $height;
}


//you do not need to alter these functions

function getwidth($image) {
$size = getimagesize($image);
$width = $size[0];
return $width;
}