标签: php mysql
我在MySQL数据库中有一些图像,每个图像都存储在BLOB字段中。 如何以像素为单位评估图像的宽度和高度?
答案 0 :(得分:3)
假设您已经通过mysqli_query从数据库中的blob字段中检索了图像,并为其指定了变量 $ image 。您可以使用以下代码:
$im = imagecreatefromstring($image); $width = imagesx($im); $height = imagesy($im);