下面是一个包含内联base64图像数据的元素(缩写为适合此处)。 JavaScript如何获取内联数据并将其发送给PHP?如果可以避免中间画布,那将是很好的,因为原始数据已经可用。
在页面中:
<img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEU4Xoy9WY9k6" id="photo">
我目前用来点击元素以触发传输到PHP的JavaScript,它将0字节.png文件保存到磁盘:
$("#photo").click(function() {
var xhr = new XMLHttpRequest();
xhr.open('POST', 'uploadPhoto.php', true);
xhr.setRequestHeader("Content-type","application/x-www-form-urlencoded");
var data = 'image=' + this.src;
xhr.send(data);
});
uploadPhoto.php,它接收数据并将其写入磁盘:
<?php
if ($_POST) {
define('UPLOAD_DIR', '/photos/');
$img = $_POST['image'];
$img = str_replace('data:image/jpeg;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.';
} else {
print 'Unable to save ' . $_POST['image'];
}
?>
缺少什么?
解决方案更新
根据@EhsanT,原始数据的png格式在php中不匹配,所以php中的这一行现在有png,其中jpeg曾经是:
str_replace('data:image/png;base64,', '', $img);
答案 0 :(得分:1)
您提供的这个特定示例代码中唯一错误的是您拥有PNG
base64图像数据,并且在uploadPhoto.php
文件中您期望JPG
文件。
所以在uploadPhoto.php
文件中只需更改此行:
$img = str_replace('data:image/jpeg;base64,', '', $img);
到此:
$img = str_replace('data:image/png;base64,', '', $img);
你很高兴