php读取和保存base64编码的图片内容解决办法

内容摘要
这篇文章主要为大家详细介绍了php读取和保存base64编码的图片内容简单示例,具有一定的参考价值,可以用来参考一下。

对php读取和保存base64编码的图片内容简单示例对此感兴趣
文章正文

这篇文章主要为大家详细介绍了php读取和保存base64编码的图片内容简单示例,具有一定的参考价值,可以用来参考一下。

对php读取和保存base64编码的图片内容简单示例对此感兴趣的朋友,看看idc笔记做的技术笔记!

/**
 * 
 * @param 
 * @arrange (www.idcnote.com)
 **/

header('Content-type:text/html;charset=utf-8');
//读取图片文件,转换成base64编码格式
$image_file = './4296762_165319032930_2.jpg';
$image_info = getimagesize($image_file);
$base64_image_content = "data:{$image_info['mime']};base64," . chunk_split(base64_encode(file_get_contents($image_file)));

//保存base64字符串为图片
//匹配出图片的格式
if (preg_match('/^(data:\s*image\/(\w+);base64,)/', $base64_image_content, $result)){
  $type = $result[2];
  $new_file = "./test.{$type}";
  if (file_put_contents($new_file, base64_decode(str_replace($result[1], '', $base64_image_content)))){
    echo '新文件保存成功:', $new_file;
  }

}


<img src=" echo $base64_image_content;" />

注:关于php读取和保存base64编码的图片内容简单示例的内容就先介绍到这里,更多相关文章的可以留意

代码注释

作者:喵哥笔记

IDC笔记

学的不仅是技术,更是梦想!