base64解码图像不下载

时间:2014-10-29 11:06:22

标签: javascript php

我使用以下脚本将html画布转换为png,让客户端下载它而不将图像保存到服务器。这些脚本在xampp和服务器cuccfree.cc中都有效。但是相同的脚本在我需要托管它的服务器中不起作用。

的Javascript

         fname = fname || 'picture';

        var data = cnvs.toDataURL("image/png");
        data = data.substr(data.indexOf(',') + 1).toString();

        var dataInput = document.createElement("input") ;
        dataInput.setAttribute("name", 'imgdata') ;
        dataInput.setAttribute("value", data);
        dataInput.setAttribute("type", "hidden");

        var nameInput = document.createElement("input") ;
        nameInput.setAttribute("name", 'name') ;
        nameInput.setAttribute("value", fname + '.png');

        var myForm = document.createElement("form");
        myForm.method = 'post';
        myForm.action = url;
        myForm.appendChild(dataInput);
        myForm.appendChild(nameInput);

        document.body.appendChild(myForm) ;
        myForm.submit() ;
        document.body.removeChild(myForm) ;

PHP scipt

<?php
    # we are a PNG image
    header('Content-type: image/png');

    # we are an attachment (eg download), and we have a name
    header('Content-Disposition: attachment; filename="' . $_POST['name'] .'"');

    #capture, replace any spaces w/ plusses, and decode
    $encoded = $_POST['imgdata'];
    $encoded = str_replace(' ', '+', $encoded);
    $decoded = base64_decode($encoded);

    #write decoded data
    echo $decoded;
?>

但这是我点击分配给javascript函数的按钮时得到的输出。 http://oi57.tinypic.com/2je1cva.jpg

我如何更正此错误???请帮帮我....

1 个答案:

答案 0 :(得分:0)

我建议你检查你正在使用的不同服务器中的php.ini中的php扩展。可能是生产服务器中缺少扩展名。