我正在尝试将imagegif()
的内容添加到变量中,或者将gif保存在变量中。
我想我可以做一个临时文件和file_get_contents()
,但我正在寻找一种更简单的方法。我不使用 Imagemagick ,我使用 GD 。
答案 0 :(得分:2)
您应该可以使用output buffer。这只是手册中的一个精简示例,带有上述输出缓冲区:
function makeGif()
{
# Start capturing the content
ob_start();
# -------- Just do your image script starting here --------- #
$im = imagecreatetruecolor(100, 100);
imagefilledrectangle($im, 0, 0, 99, 99, 0xFFFFFF);
imagestring($im, 3, 40, 20, 'GD Library', 0xFFBA00);
imagegif($im);
imagedestroy($im);
# -------- stopping your image here -------- #
# This assigns the content of the output
$img = ob_get_contents();
# Stop capturing the output
ob_end_clean();
# Send back the content
return $img;
}
# $image should now contain the gif data
$image = makeGif();