通过WebGL的跨域图像URL无法正常工作

时间:2013-06-18 23:02:14

标签: google-chrome firefox cross-domain webgl

我很难通过WebGL尝试显示来自其他域的图像。我在网上看了很多教程,但它们似乎没有用(它们似乎都来自2011年和/或针对chrome 13 / mozilla firefox 5)。我有chrome 28和mozilla firefox 21.0。以下是我的一些代码:

function main() {
    var image = new Image();
    image.onload = function() {
        render(image);
    }
    image.crossOrigin = "use-credentials";
    image.src = "http://mediaserver.pulse2.com/wp-content/uploads/2012/10/google-maps-logo.png";
}

我已将“use-credentials”替换为“匿名”,但仍无效。没有任何错误消息,只显示空白屏幕。

如果你能提供帮助,那就太好了!谢谢!

0 个答案:

没有答案