gpt4 book ai didi

php - 如何保存由 imagecreatefromstring() 函数创建的图像?

转载 作者:IT王子 更新时间:2023-10-29 00:17:10 29 4
gpt4 key购买 nike

这是我的代码:

$data = 'iVBORw0KGgoAAAANSUhEUgAAABwAAAASCAMAAAB/2U7WAAAABl'
. 'BMVEUAAAD///+l2Z/dAAAASUlEQVR4XqWQUQoAIAxC2/0vXZDr'
. 'EX4IJTRkb7lobNUStXsB0jIXIAMSsQnWlsV+wULF4Avk9fLq2r'
. '8a5HSE35Q3eO2XP1A1wQkZSgETvDtKdQAAAABJRU5ErkJggg==';
$data = base64_decode($data);

$im = imagecreatefromstring($data);
if ($im !== false) {
header('Content-Type: image/png');
imagepng($im);
imagedestroy($im);

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

我想将以这种方式生成的图像保存到一个目录中。我该怎么做?

最佳答案

这是 imagepng 的正确语法:

imagepng($im, "/path/where/you/want/save/the/png.png");

根据PHP manual :

bool imagepng ( resource $image [, string $filename [, int $quality [, int $filters ]]] )

filename - The path to save the file to.

If not set or NULL, the raw image stream will be outputted directly.

关于php - 如何保存由 imagecreatefromstring() 函数创建的图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15760559/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com