如何将二进制图像数据转换为图像文件并将其保存在php中的文件夹中

时间:2012-01-16 10:37:33

标签: php gd

我有一个将图像文件转换为二进制文件的程序,它还将二进制数据转换为图像文件。我已经完成了第一个,我可以将图像文件转换为二进制文件。但第二个尚未完成。

如何将二进制数据转换并保存到图像文件

我在PHP中检查这个。请帮助我

3 个答案:

答案 0 :(得分:3)

尝试imagecreatefromstring方法,记录here

答案 1 :(得分:1)

您可以使用以下代码,并选择saving an imageresizing saved png image without losing its transparent/white effect

$data = 'binary data of image';
$data = base64_decode($data);
$im = imagecreatefromstring($data);
// assign new width/height for resize purpose
$newwidth = $newheight = 50;
// Create a new image from the image stream in the string
$thumb = imagecreatetruecolor($newwidth, $newheight); 

if ($im !== false) {

    // Select the HTTP-Header for the selected filetype 
    #header('Content-Type: image/png'); // uncomment this code to display image in browser

    // alter or save the image  
    $fileName = $_SERVER['DOCUMENT_ROOT'].'server location to store image/'.date('ymdhis').'.png'; // path to png image
    imagealphablending($im, false); // setting alpha blending on
    imagesavealpha($im, true); // save alphablending setting (important)

    // Generate image and print it
    $resp = imagepng($im, $fileName);

    // resizing png file
    imagealphablending($thumb, false); // setting alpha blending on
    imagesavealpha($thumb, true); // save alphablending setting (important)

    $source = imagecreatefrompng($fileName); // open image
    imagealphablending($source, true); // setting alpha blending on

    list($width, $height, $type, $attr) = getimagesize($fileName);
    #echo '<br>' . $width . '-' . $height . '-' . $type . '-' . $attr . '<br>';

    imagecopyresampled($thumb, $source, 0, 0, 0, 0, $newwidth, $newheight, $width, $height);
    $newFilename = $_SERVER['DOCUMENT_ROOT'].'server location to store image/resize_'.date('ymdhis').'.png';
    $resp = imagepng($thumb,$newFilename);

    // frees image from memory
    imagedestroy($im);
    imagedestroy($thumb);

}
else {
    echo 'An error occurred.';
}

同样,我们可以为JPEG,JPG和GIF格式的图像做。

希望这对人们有所帮助!

答案 2 :(得分:0)

您可以将二进制流(我假设r / g / b值)转换回十进制表示法,并使用imagesetpixel()将像素写入您正在创建的图像。

将图像数据更改为二进制流的几个原因之一是在隐写术期间隐藏更低二进制位的数据 - 将每个像素的颜色更改为人眼无法辨别的水平

检查http://www.php.net/manual/en/function.imagesetpixel.php