13

尝试创建
Step 1 - 让用户通过 Ajax、Raphael 和 Raphael freetransform 上传图像。

第 2 步 - 单击按钮以显示来自合并上传图像的一张图像。(问题): 我发现了关于 convert Raphael svg 1 2 3的类似帖子,
所以我也在使用 Canvg 但得到了 console.log:Resource interpreted as image but transferred with MIME type text/html error: image "" not found

请帮我找到解决方法。或任何线索如何以其他方式达到相同的目标(将几个 Raphael svg 图像从上传转换为一个 png/jpeg)?

谢谢!

步骤1

// upload images and ajax show in page
var paper = Raphael($('.upload_img')[0], 400, 200);
$('.upload_btn').click(function(){
    ...
    $.ajax({
        type: "POST",
        url: "index.php",
        data: fd,
        processData: false,
        contentType: false,
        success: function(html){
            var session = ..., file = ... type = ...; 
            function register(el) {
                // toggle handle
            };
            var img = new Image();
            img.onload = function(){
                var r_img = paper.image('img/product/tmp/'+session+'/'+file+type, 0, 0, 200, 200);
                register(r_img);
            };
            img.src = 'img/product/tmp/'+session+'/'+file+type;
        }
    });
});

第2步

// merge and show
$('.merge_btn').click(function(){
    var upload_svg = $('.upload_img').html();
    canvg('canvas', upload_svg);
    console.log('upload_svg'+upload_svg); //<svg height="200" version="1.1" width="400" xmlns="http://www.w3.org/2000/svg" style="overflow-x: hidden; overflow-y: hidden; position: relative; "><desc></desc><defs></defs><image x="0" y="0" width="200" height="216.91973969631235" preserveAspectRatio="none" href="img/product/tmp/bc4d26ceb620852db36074d351883539/6.jpeg"></image></svg>
    // and get error
});


// These code If toggle show Raphael freetransform svg handle, it is work convert several svg handle to one image. but still not found upload image to merge
4

1 回答 1

1

如果我没记错的话canvg,函数期望第二个参数是String包含图像文件路径的。但是在第 2 步中,您的代码会:

    var upload_svg = $('.upload_img').html(); // **** this does not return the image path
    canvg('canvas', upload_svg);

我建议您尝试以下方法:

    var upload_svg = $('.upload_img').attr('src');
    canvg('canvas', upload_svg);

这将解释错误 -Resource interpreted as image but transferred with MIME type text/html它需要一个图像但收到空白HTML。其余的代码似乎很好。

于 2013-06-15T21:26:02.770 回答