1

我的页面上有一个视频元素显示网络摄像头流。接下来我有一个画布,它具有拍摄快照并在画布中显示图像的功能。现在我需要将此画布图像发送到服务器并使用 PHP 将其保存到文件中。我在网上结合了各种教程,最后得到了下面的代码,但是保存在服务器文件夹中的图像只是空白,所以我猜 PHP 文件没有正确接收要显示的数据......如果可以请帮助: ) 只有 Jquery + AJAX 不传输 post 变量是问题......这里是代码:

var int=self.setInterval(function(){snapshot()},2000);

    function snapshot() {
      // Draws current image from the video element into the canvas
        ctx.drawImage(output, 0,0, canvas.width, canvas.height);
        var dataURL = canvas.toDataURL();
        dataURL = dataURL.replace('data:image/png;base64,','');

        $.ajax({
        type: 'POST',
        url: 'onlinewebcams.php',
        data: postData,
        contentType: 'application/json'
        });

    }

然后有一个单独的 PHP 文件,但包含在保存 POST 图像的同一页面上(不起作用):

这是PHP文件代码:

sleep(5); // wait 5 seconds
define('UPLOAD_DIR', 'allwebcams/');
$img = $_POST['dataURL'];
$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.';
4

2 回答 2

2

有几件事:

客户端:

在您的 ajax POST 中,您尚未定义 postData,因此 ajax 正在发送一个空白字符串。

您应该改为发送 dataURL。然后,您的数据包是一个未命名的字符串。

我更喜欢将数据包装到一个对象中。这样,如果我以后想要发送更多信息而不仅仅是编码图像,我只需向对象添加另一个属性。例如,您可能想要发送生成图像的网络摄像头的 ID 以及生成图像的时间。

顺便说一句,发送的内容类型不是 json,它是 base64 编码的图像数据。您可以忽略内容类型,因为您的 PHP 知道将要处理的数据类型。

此外,您可能希望从 PHP 获得指示成功/失败的响应,或者可能是它刚刚保存的文件的名称。您可以使用 ajax POST 中的 .done 响应回调处理程序来做到这一点。

试试这个 AJAX POST:

// create a dataUrl from the canvas
var dataURL= canvas.toDataURL();

// post the dataUrl to php
$.ajax({
  type: "POST",
  url: "onlinewebcams.php",
  data: {image: dataURL}
}).done(function( respond ) {
  // you will get back the temp file name
  // or "Unable to save this image."
  console.log(respond);
});

data:image/png;base64您可以在 ajax 之前或 PHP 内部去除数据类型标头 ( )。

在您的代码中,您在客户端代码和 PHP 代码中都将其剥离——这是不必要的;)

PHP的

我不太确定你为什么要在 php 代码中睡觉——无论如何......

在您的 PHP 中,您应该始终在尝试处理数据之前检查数据是否存在且不为空。如果某些 php 服务器收到空数据包,它们会变得特别不安。

您的 $img=$_POST['dataURL'] 正在要求一个不存在的命名数据。这就是 php 创建空文件的原因。

试试这个 PHP 代码:

// make sure the image-data exists and is not empty
// xampp is particularly sensitive to empty image-data 
if ( isset($_POST["image"]) && !empty($_POST["image"]) ) {    

    // get the dataURL
    $dataURL = $_POST["image"];  

    // the dataURL has a prefix (mimetype+datatype) 
    // that we don't want, so strip that prefix off
    $parts = explode(',', $dataURL);  
    $data = $parts[1];  

    // Decode base64 data, resulting in an image
    $data = base64_decode($data);  

    // create a temporary unique file name
    $file = UPLOAD_DIR . uniqid() . '.png';

    // write the file to the upload directory
    $success = file_put_contents($file, $data);

    // return the temp file name (success)
    // or return an error message just to frustrate the user (kidding!)
    print $success ? $file : 'Unable to save this image.';

}

和通常的陷阱:

  • 确保您已正确设置上传目录。
  • 确保您在上传目录上正确设置了权限。
于 2013-09-11T17:21:06.587 回答
2

这里!首先使用php上传画布图像数据,通过将图像数据发送到php文件调用ajax并在php文件上传脚本中获取图像数据如下:所以你已经看到了这个解决方案。

$upload_dir = "upload/";
$iid = $_POST['id'];
$img_encode = str_replace('data:image/png;base64,', '', $iid);
$img = str_replace(' ', '+', $img_encode);
$data = base64_decode($img);
echo $filename = md5(uniqid()) . '.png';
$file = $upload_dir.$filename;
file_put_contents($file, $data);
于 2013-12-14T05:08:04.557 回答