将base64转换为图像大小并在php中编码

时间:2015-04-03 04:36:23

标签: php jpeg

我使用html5文件api在浏览器中预览图像,然后使用ajax将其作为base64字符串保存到数据库。

我需要降低质量才能调整图像大小。

<?php

$img = $_POST['img'];
$i = explode(",",$img);

$img = $i[1];
$img = imagecreatefromstring[$img];
$rimg = imagejpeg($img,XXXXXXX, 60);

?>

xxx=> how could I turned it back to base64?

提前感谢。

1 个答案:

答案 0 :(得分:2)

来自http://php.net/manual/en/function.imagejpeg.php

 /*
 * imageXXX() only has two options, save as a file, or send to the browser.
 * It does not provide you the oppurtunity to manipulate the final GIF/JPG/PNG file stream
 * So I start the output buffering, use imageXXX() to output the data stream to the browser,
 * get the contents of the stream, and use clean to silently discard the buffered contents.
 */
ob_start();

switch ($image_type)
{
    case 1: imagegif($tmp); break;
    case 2: imagejpeg($tmp, NULL, 100);  break; // best quality
    case 3: imagepng($tmp, NULL, 0); break; // no compression
    default: echo ''; break;
}

$final_image = ob_get_contents();

ob_end_clean();

return $final_image;

或保存到文件,然后将文件加载为二进制流,基于64二进制文件并删除文件