如何将Base64图像转换为文件类型

时间:2016-09-27 09:44:14

标签: javascript html html5 base64 filereader

我想将我的网站注入ios设备,我需要使用该设备的相机。

返回base64图像类型。相机完成后,我可以将其转换为文件类型吗?

如果移动设备返回文件路径,我可以将其重置为输入元素(类型="文件")然后重复使用fileReader来读取它吗?怎么做?

如果移动设备返回文件路径,我可以设置<img>元素的src属性吗?它会显示吗?

1 个答案:

答案 0 :(得分:0)

你可以用base64格式从客户端获取它,并使用php将其转换为服务器端的图像文件:

function base64_convert_to_jpeg($base64_string_in, $file_out) {
   $fp = fopen($file_out, "wb"); // this open file writable and binary 

   $data = explode(',', $base64_string_in);  //explode base64 string with ',' character

   fwrite($fp, base64_decode($data[1])); //decode base64 and write it to file
   fclose($fp);  //close the file 

   return $file_out; //return jpeg file

}

如果你有问题或者对此有任何疑问,请为我重播... 祝你好运