base64图像到png不工作的PHP

时间:2014-06-10 10:25:28

标签: php base64 imagecreatefrompng

我试图将base64图像转换为png。这是我的代码

$img = $_POST['img'];
$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.';

文件已成功创建。但它无法打开。它不是可读格式。

1 个答案:

答案 0 :(得分:0)

很抱歉恢复你的问题,但看一看,它就像魅力一样:

<?php

$img = $_POST['Base64Variable'];
define('UPLOAD_DIR', 'YourFolder/');


$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 : 'Could not save the file!';

?>