如何从php中的字节数组获取图像?我有一个字节数组字符串,我想生成一个图像。
我在下面尝试过此代码。
$arrayData = array(
'status' => 404,
'message' => 'Not Found'
);
$json = file_get_contents('php://input');
$obj = json_decode($json,true);
$img = isset($obj['image']) ? $obj['image'] : '';
print_r($img); die;
$filename = $finalimage . '.' . 'jpg';
$filepath = base_url().'uploads/apifiles'.$filename;
file_put_contents($filepath, $finalimage);
答案 0 :(得分:5)
在下面尝试此代码
$image_string = 'byte_strng';
$data = base64_decode($image_string);
$im = imagecreatefromstring($data);
header('Content-Type: image/jpeg');
imagejpeg($im);
imagedestroy($im);