📅  最后修改于: 2023-12-03 15:30:53.955000             🧑  作者: Mango
在 PHP 中,我们可以通过使用 getimagesize()
函数来获取图像的大小。
list($width, $height, $type, $attr) = getimagesize(filename);
在调用 getimagesize()
函数后,我们可以获得以下有用的信息:
$width
:图像的宽度,以像素为单位$height
:图像的高度,以像素为单位$type
:图像类型的数字代号,详见 Image Type Constants$attr
:一个包含有图像HTML height="" 和 width="" 属性的字符串,使图像在页面正确展示以下示例代码通过 getimagesize()
函数获取图片的宽度和高度,并将结果输出在页面上:
<?php
// 定义要获取大小的图片路径
$image_path = "path/to/image.jpg";
// 调用 getimagesize() 函数
list($width, $height) = getimagesize($image_path);
// 输出宽度和高度
echo "图片宽度为:" . $width . "px<br>";
echo "图片高度为:" . $height . "px";
?>
[2]: https://www.php.net/manual/en/function.getimagesize.php