Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'd like to load some XHTML into a Three.js THREE.Texture and I don't really understand the crossorigin problems I am having. I've been researching for the past few hours but I'm finding conflicting answers. This issue seems to suggest that it is possible, but the bottom of this page seems to suggest that it's not yet??

I've tried 3 different(ish) methods. First I make a data URL of some SVG as described here

var data = "data:image/svg+xml," +
    "<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'>" +
        "<foreignObject width='100%' height='100%'>" +
            "<div xmlns='http://www.w3.org/1999/xhtml' style='font-size:40px'>" +
            "<em>I</em> like <span style='color:white; text-shadow:0 0 2px blue;'>cheese</span>" +
            "</div>" +
        "</foreignObject>"+
    "</svg>";

After that, I've tried a few things :

  1. Load the data URL directly using

    THREE.ImageUtils.loadTexture( data, {}, function(tex){
        // create geometry, material, mesh,
        // add to scene
    })
    

results in:

    Cross-origin image load denied by Cross-Origin Resource Sharing policy.
  1. Load it into an image. When it loads, use it to make the texture:

    var image = document.createElement( 'img' );
    image.crossOrigin = 'anonymous';
    image.src = data;
    image.onload = function(){
        var texture = new THREE.Texture(image);
        texture.needsUpdate = true;
    
        // create geometry, material, mesh,
        // add to scene
    };
    

results in:

    Cross-origin image load denied by Cross-Origin Resource Sharing policy.
  • interestingly, if I remove image.crossOrigin = 'anonymous';, I can add the image to the DOM, but still get Uncaught Error: SECURITY_ERR: DOM Exception 18 when I try to load it into WebGL. Why?

2a. Load it into an image. When it loads, draw the image into a canvas, and then load the canvas into the texture (??! not sure why this would make a difference, but I saw it in various places)

    var image = document.createElement( 'img' );
    image.crossOrigin = 'anonymous';
    image.src = data;
    image.onload = function(){
          var canvas = document.createElement('canvas');
          var ctx = canvas.getContext('2d');
          ctx.drawImage(image, 0, 0);

          var texture = new THREE.Texture(canvas);
          texture.needsUpdate = true;

          // create geometry, material, mesh,
          // add to scene
    };

results in:

    Cross-origin image load denied by Cross-Origin Resource Sharing policy.

I think (and I hope) that this is just something I don't understand about the cross-origin stuff as it applies to WebGL.

FWIW, I am running this using python -m SimpleHTTPServer in Chrome and I have this in my /crossdomain.xml

    <?xml version="1.0"?>
    <!DOCTYPE cross-domain-policy SYSTEM "http://www.adobe.com/xml/dtds/cross-domain-policy.dtd">
    <cross-domain-policy>
            <site-control permitted-cross-domain-policies="all"/>
            <allow-access-from domain="*" to-ports="*" secure="false"/>
            <allow-http-request-headers-from domain="*" headers="*" secure="false"/>
    </cross-domain-policy>

Thanks in advance

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.