PHP 将dataurl转成图片image方法详解
程序员文章站
2022-04-25 23:17:36
...
这篇文章主要介绍了PHP 将dataurl转成图片image方法的相关资料,这里提供了两种方法及实现方式,需要的朋友可以参考下
PHP 将dataurl转成图片image方法
使用canvas 生成的图片,是使用dataurl的,php无法直接通过file_put_contents方法保存到本地电脑,需要做一下转码。
图片dataurl 如下
$imgstr = 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAHElEQVQI12P4//8/w38GIAXDIBKE0DHxgljNBAAO9TXL0Y4OHwAAAABJRU5ErkJggg==';
方法一:
通过正则提取出dataurl存储所需的数据,然后直接展示在页面上
if (!preg_match('/data:([^;]*);base64,(.*)/', $imgstr, $matches)) { die("error"); } $content = base64_decode($matches[2]); header('Content-Type: '.$matches[1]); header('Content-Length: '.strlen($content)); echo $content; die;
方法二:
如果仅仅是想保存图片到本地,可以用substr 和 strpos 方法
$imgdata = substr($imgstr,strpos($imgstr,",") + 1); $decodedData = base64_decode($imgdata); file_put_contents('11.png',$decodedData );
总结:以上就是本篇文的全部内容,希望能对大家的学习有所帮助。
相关推荐:
php性能分析之php-fpm慢执行日志slow log的用法
以上就是PHP 将dataurl转成图片image方法详解的详细内容,更多请关注其它相关文章!
推荐阅读
-
php将/data/www/site1/image目录中的图片文件缩小成800*600像素的图片解决方法
-
利用canvas中toDataURL()将图片转为dataURL(base64)的方法详解
-
php将/data/www/site1/image目录中的图片文件缩小成800*600像素的图片解决方法
-
PHP 将dataurl转成图片image方法总结
-
php将/data/www/site1/image目录中的图片文件缩小成800*600像素的图片解决方法
-
PHP 将dataurl转成图片image方法详解
-
PHP 将dataurl转成图片image方法详解
-
php将/data/www/site1/image目录中的图片文件缩小成800*600像素的图片解决方法
-
PHP 将dataurl转成图片image方法总结
-
PHP详解通过微信将图片上传到服务器的方法