📜  在 laravel 中获取图像的宽度和高度 - PHP 代码示例
📅  最后修改于: 2022-03-11 14:53:36.605000             🧑  作者: Mango
代码示例2
$image = getimagesize($request->image);
$width = $image[0];
$height = $image[1];