如何解码base64附件文件 - Gmail API

时间:2016-07-19 07:11:28

标签: javascript php base64 gmail-api

我在javascript中使用Gmail API函数:

var request = gapi.client.gmail.users.messages.attachments.get({
  'userId': 'me',
  'messageId': 'MyMessageId',
  'id': 'MyAttachmentId'
});

request.execute(function(resp) {
  var dd = new FormData();
  //here resp.result.data is the base64 data of the attachment file
  dd.append( "img_data", JSON.stringify( resp.result.data ) );

  fetch("http://my-url",{
    method: 'post',
    body: dd
  });
}

我将此数据发送到网址,其中服务器代码使用php完成。 我使用以下代码解码base64数据并保存文件(仅适用于png图像文件):

define('UPLOAD_DIR', './');
$img = json_decode($_POST['img_data']);
$img = str_replace('data:image/png;base64,', '', $img);
$img = str_replace(' ', '+', $img);
$data = base64_decode($img);
$file = UPLOAD_DIR . uniqid() . '.png';
$success = file_put_contents($file, $data);
print $success ? $file : 'Unable to save the file.';

一切正常,但保存的图片文件已损坏并显示错误:Fatal error reading PNG image file: Decompression error in IDAT

1 个答案:

答案 0 :(得分:1)

终于得到了解决方案。添加了以下php代码:

$img = str_replace(' ', '+', $img);
$img = str_replace('_', '/', $img);
$img = str_replace('-', '+', $img);

解码和保存文件的新代码:

define('UPLOAD_DIR', './');

$img = json_decode($_POST['img_data']);
$img = str_replace(' ', '+', $img);
$img = str_replace('_', '/', $img);
$img = str_replace('-', '+', $img);
$data = base64_decode($img);
$file = UPLOAD_DIR . uniqid() . '.png';
$success = file_put_contents($file, $data);
print $success ? $file : 'Unable to save the file.';