如何在php中将字节数组转换为图像?

时间:2015-06-12 09:35:37

标签: php image image-processing bytearray

我想将字节数组从webservice转换为image。 webservice响应数组如下所示,但我无法弄清楚如何将此数组渲染回图像。请帮帮我

'MemberImage' => 
    array (size=151745)
      0 => int 255
      1 => int 216
      2 => int 255
      3 => int 224
      4 => int 0
      5 => int 16
      6 => int 74
      7 => int 70
      8 => int 73
      9 => int 70
      10 => int 0
      11 => int 1
      12 => int 1
      13 => int 1
      14 => int 0
      15 => int 72
      16 => int 0
      17 => int 72
      18 => int 0
      19 => int 0
      20 => int 255 ...

2 个答案:

答案 0 :(得分:2)

如果要将该数组转换为实际的字节数组(即PHP中的二进制字符串),可以使用以下函数...

function arrayToBinaryString(Array $arr) {
    $str = "";
    foreach($arr as $elm) {
        $str .= chr((int) $elm);
    }
    return $str;
}

您也可以使用pack代替上述函数来执行相同的操作......

call_user_func_array('pack', array_merge(['C*'], $arr));

或在PHP 5.6 +

pack('C*', ...$arr);

然后你可以 - 理论上 - 使用二进制字符串作为图像。因此,例如,假设您要输出原始图像数据,并且图像是PNG,您可以执行以下操作,并结合上述代码...

header('Content-type: image/png');
echo arrayToBinaryString($myArray);

请务必使用实际图片的任何类型编辑Content-type标题。如果您不知道可以在二进制字符串上使用getimagesize之类的内容从图像数据中提取 MIME 类型。

$tmpFile = tempnam("/tmp");
$image = arrayToBinaryString($myArray);
file_put_conetnts($tmpFile, $image);
$imageData = getimagesize($tmpFile);
header("Content-type: {$imageData['mime']}");
echo $image;
unlink($tmpFile);

答案 1 :(得分:1)

使用supervisord将数据转换为二进制字符串,es:

$data = implode('', array_map(function($e) {
    return pack("C*", $e);
}, $MemberImage));

// header here
// ...

// body
echo $data;