タグ

関連タグで絞り込む (0)

  • 関連タグはありません

タグの絞り込みを解除

imageとCORSに関するtoshi3221のブックマーク (1)

  • Three.js and loading a cross-domain image

    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"); }; fun

    Three.js and loading a cross-domain image
    toshi3221
    toshi3221 2015/08/06
    THREE.ImageUtils.loadTextureにnewをつけてはいけないところがポイント
  • 1