//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; } |