如何从base64编码的jpeg创建GD图像​​?

发布于 2024-10-10 01:41:14 字数 306 浏览 3 评论 0原文

我有一个上传 Api,它作为响应对象提供(以及 Json 对象内的其他内容)base64 编码的 jpeg 图像。

我按如下方式创建编码图像:

$im; // gd image resource
ob_start();
imagejpeg($im);
$data = base64_encode(ob_get_clean());

然后使用 JavaScript 将数据放入表单字段中并提交。

如何再次从中创建 GD 资源,以便我实际上可以将该图像保存为文件?

一切都在 PHP 中。

I have an upload Api that as a response object delivers (along with other stuff inside a Json object) a base64 encoded jpeg image.

I create the encoded image as so:

$im; // gd image resource
ob_start();
imagejpeg($im);
$data = base64_encode(ob_get_clean());

The data then is put inside a form field using javascript and submitted.

How can I create a GD resource from that again so that I actually can save that image as a file?

Everything in PHP.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

陈年往事 2024-10-17 01:41:14

您可以使用 imagecreatefromstring() 函数:

$data = base64_decode($_POST['image_as_base64']);

$formImage = imagecreatefromstring($data);

“String”并不意味着“真实”字符串。在这种情况下,它意味着字节/blob 数据。

You can use imagecreatefromstring() function:

$data = base64_decode($_POST['image_as_base64']);

$formImage = imagecreatefromstring($data);

"String" does not mean a "real" string. In that case it means bytes/blob data.

北座城市 2024-10-17 01:41:14

如何再次从中创建 GD 资源,以便我实际上可以将该图像保存为文件?

您确定需要执行该额外步骤吗?怎么样:

file_put_contents('MyFile.jpg', base64_decode($_POST['MyFormField']));

How can I create a GD resource from that again so that I actually can save that image as a file?

Are you sure you need to do that extra step? How about:

file_put_contents('MyFile.jpg', base64_decode($_POST['MyFormField']));
数理化全能战士 2024-10-17 01:41:14

我是这样做的:

// input is in format: data:image/png;base64,...
$str="data:image/png;base64,"; 
$data=str_replace($str,"",$_POST['image']); 
$data = base64_decode($data);
file_put_contents('tmp/'.mktime().'.png', $data);

I did by this way:

// input is in format: data:image/png;base64,...
$str="data:image/png;base64,"; 
$data=str_replace($str,"",$_POST['image']); 
$data = base64_decode($data);
file_put_contents('tmp/'.mktime().'.png', $data);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文