只是想知道是否有人知道如何将 bmp 字节数组转换为实际图像?
图像提取:
424d 4284 0300 0000 0000 4200 0000 2800
0000 4001 0000 f000 0000 0100 1800 0300
这不适用于 bmp(其中 data 是表示图像的输入字符串)
$im = imagecreatefromstring($data);
if ($im !== false) {
header('Content-Type: image/png');
imagepng($im);
imagedestroy($im);
}
else {
echo 'An error occurred.';
}
谢谢!