Three.js and loading a cross-domain image

匿名 (未验证) 提交于 2019-12-03 02:13:02

问题:

I know this has been asked before, and I've read ever question and answer I've been able to find, but nothing works.

I'm running this on a local server (IIS). I'm trying to load an image from imgur and then use that as texture for an object using the code:

var savedImage = /[^?]*$/.exec(location.search)[0]; if (savedImage != "") { savedImageLoad("http://i.imgur.com/" + savedImage + ".jpg"); };      function savedImageLoad(image) {         var mapOverlay = new THREE.ImageUtils.loadTexture(image);         sphere.material = new THREE.MeshBasicMaterial({map: mapOverlay, needsUpdate: true});;         sphere.geometry.buffersNeedUpdate = true;         sphere.geometry.uvsNeedUpdate = true;     } 

But it's giving the error:

Uncaught SecurityError: Failed to execute 'texImage2D' on 'WebGLRenderingContext': The cross-origin image at http://i.imgur.com/uBD0g95.jpg may not be loaded. 

I've tried placing THREE.ImageUtils.crossOrigin = "anonymous";, or some variation of, at the beginning of my code, at the end, and at other various points. I've added a web.config with

<?xml version="1.0" encoding="utf-8"?> <configuration>  <system.webServer>   <httpProtocol>     <customHeaders>       <add name="Access-Control-Allow-Origin" value="*" />       <add name="Access-Control-Allow-Methods" value="GET,PUT,POST,DELETE,OPTIONS" />       <add name="Access-Control-Allow-Headers" value="Content-Type" />     </customHeaders>   </httpProtocol>  </system.webServer> </configuration> 

but that didn't work. This also doesn't work on a site hosted on bitbucket.org, which to me says I'm missing something in my code.

It seems to be failing at the sphere.material = new THREE.MeshBasicMaterial({map: mapOverlay, needsUpdate: true});; line, as if I comment that out then there's no error (but then the mesh isn't updated).

I'm really at a loss of what else to try here and any help would be appreciated.

回答1:

This works

THREE.ImageUtils.crossOrigin = ''; var mapOverlay = THREE.ImageUtils.loadTexture('http://i.imgur.com/3tU4Vig.jpg'); 

Here's a sample

var canvas = document.getElementById("c"); var renderer = new THREE.WebGLRenderer({canvas: canvas});  var camera = new THREE.PerspectiveCamera( 20, 1, 1, 10000 ); var scene = new THREE.Scene(); var sphereGeo = new THREE.SphereGeometry(40, 16, 8);  var light = new THREE.DirectionalLight(0xE0E0FF, 1); light.position.set(200, 500, 200); scene.add(light); var light = new THREE.DirectionalLight(0xFFE0E0, 0.5); light.position.set(-200, -500, -200); scene.add(light);  camera.position.z = 300;  THREE.ImageUtils.crossOrigin = ''; var texture = THREE.ImageUtils.loadTexture('http://i.imgur.com/3tU4Vig.jpg'); var material = new THREE.MeshPhongMaterial({     map: texture,     specular: 0xFFFFFF,     shininess: 30,     shading: THREE.FlatShading, }); var mesh = new THREE.Mesh(sphereGeo, material); scene.add(mesh);  function resize() {     var width = canvas.clientWidth;     var height = canvas.clientHeight;     if (canvas.width != width ||         canvas.height != height) {           renderer.setSize(canvas.clientWidth, canvas.clientHeight, false);  // don't update the style. Why does three.js fight CSS? It should respect CSS :(                  camera.aspect = canvas.clientWidth / canvas.clientHeight;         camera.updateProjectionMatrix();     } }  function render(time) {     time *= 0.001;  // seconds     resize();     mesh.rotation.y = time;     renderer.render(scene, camera);     requestAnimationFrame(render); } requestAnimationFrame(render);
body {     margin: 0; }  #c {     width: 100vw;     height: 100vh;     display: block; }
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/84/three.min.js"></script> <canvas id="c"></canvas>

Note: You don't use new with THREE.ImageUtils.loadTexture

In order to load an image cross-origin into WebGL the server that's sending the image has to respond with the correct headers. It's not enough for you to say you want to use the image cross-origin. All that does is tell the server you're requesting permission to use the image.

You can set img.crossOrigin, or in THREE's case THREE.ImageUtils.crossOrigin, to either '', 'anonymous' which is the same as '', or you can set it to 'use-credentials' which sends even more info to the server. The browser sees you set crossOrigin and sends certain headers to the server. The server reads those headers, decides if your domain has permission to use the image and if you do have permission it sends certain headers back to the browser. The browser, if it sees those headers will then let you use the image.

The biggest point to take away from the above is the server has to send the headers. Most servers don't send those headers. imgur.com does apparently. I suspect bitlocker does not though I didn't test it.

Also you have to set crossOrigin. If you don't the browser won't allow you to use the img in ways your not supposed to be able to even if the server sends the correct header.



回答2:

UPDATE: Deprecated method

I came across this problem and applied solution from the answer to find it not working due to the deprecated method in newer releases of the THREE.js. I'm posting this answer in case anyone get the same issue. Despite deprecation, information provided by gman in original answer are most helpful and I recommend reading it.

THREE.ImageUtils.loadTexture() 

method became deprecated since the original question and answer.

Current way to load the texture:

// instantiate a loader var loader = new THREE.TextureLoader();  //allow cross origin loading loader.crossOrigin = '';  // load a resource loader.load('textures/land_ocean_ice_cloud_2048.jpg',     // Function when resource is loaded     function ( texture ) {},     // Function called when download progresses     function ( xhr ) {},     // Function called when download errors     function ( xhr ) {} ); 


回答3:

I found a solution for images and JSON models according to the cross-domain issue. This always works, also on Localhost.

In my case, I'm loading the game from NodeJS at port 3001, to work with Socket.io. I want the 3d models from port 80.

Assume all models are in directory: game/dist/models/**/*

I created a PHP file game/dist/models/json.php:

<?php  header('Access-Control-Allow-Credentials: true'); header('Access-Control-Allow-Methods: GET'); header('Access-Control-Allow-Origin: http://localhost:3001');   if (isset($_GET['file'])) {     switch($_GET['file'])     {         case 'house1':             header('Content-Type: application/json');             $file = 'houses/house1.json';             $json = json_decode(file_get_contents($file),TRUE);             echo json_encode($json, TRUE);             die();         break;     } } ?> 

ThreeJS:

var loader = new THREE.ObjectLoader();       loader.load(distPath+"models/json.php?file=house1",function ( obj ) {          scene.add( obj );     }); 

Have fun!



回答4:

You can use a image variable there?

something like

var myImage = new Image();  myImage.src = "//i.imgur.com/ADBTaLw.jpg"; var mapOverlay = new THREE.ImageUtils.loadTexture(myImage.src); 


标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!