您好我有一个DataURL https://www.dropbox.com/s/xrt465wlnuzwogf/data.rtf(我已经测试了dataURL并且它呈现了一个图像)我正在发送到一个php文件。 var myImage = dataURL 这是JS:
$.ajax({
type:"POST",
url: "php/save.php",
data: "img="+myImage+"&random="+random,
success: function(){
}
});
这是从这里取得的PHP并稍加修改:http://j-query.blogspot.in/2011/02/save-base64-encoded-canvas-image-to-png.html 这是php:
<?php
$random = $_REQUEST['random'];
$img = $_REQUEST['img'];
// requires php5
define('UPLOAD_DIR', '/');
//$img = $_POST['img'];
//echo($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.';
?>
该文件正在我的服务器2742img.png上创建,但是在0B(无数据)。有人知道什么可能阻止文件保存吗?
感谢。