var someImage = new Image("some_image.png");
var pixiTexture = PIXI.Texture(someImage);
I get undefined errors. I know there is .fromImage(), but it takes a path and not a JavaScript Image() object. I know it also can take a canvas, but this is not a canvas but a JS Image object.
new PIXI.Texture(new PIXI.BaseTexture(someImage))
PS documentation is at http://www.goodboydigital.com/pixijs/docs/classes/Texture.html
serprex:
serpex' line works perfectly though
The reason why you probably don't see anything is because your image hasn't loaded yet, you need to work with a callback, but it's hard to tell without seeing any real code.
To not have to deal with async JS stuff there is offcourse the assetloader route, which is easier and probably thats why it's being used in like all the examples. This problem of yours is just a plain JS problem though, hardly anything todo with pixi
here's a working example for you though http://jsfiddle.net/nikkikoole/332gdcna/3/
it's in CS but the gist of it in JS is
var someImage = new Image()
someImage.src = 'someSource.png'
someImage.onload = function(){
new PIXI.Texture(new PIXI.BaseTexture(someImage))
}
@NikkiKoole That does not work because the image has to be on the same domain, you can't load images cross-origin in JavaScript and draw them to canvas.
ah right I forgot some people arent using chrome, that fiddle _just works_ on my system, sry about that.
@RubrikBonnier The api page clearly states the first param to the texture ctor is a BaseTexture. You can even click it to see how to construct a base texture.
The code that @serprex posted works fine, you just need to wait for the image to load before using it in a texture (for webgl) or the image is blank when uploaded to the GPU and you need to manually update it.
Try:
var someImage = new Image();
someImage.src = 'someSource.png';
someImage.onload = function () {
new PIXI.Texture(new PIXI.BaseTexture(someImage));
}
I get no errors logged. Nothing is displayed on the screen. The images used have been loaded prior to being used.
Seriously... I'm doing what he does. The images are pre-loaded. I get no errors logged whatsoever. How am I supposed to know what's wrong when it doesn't log any error?
Are you sure you are using a local image and not one from a cross-origin URL ?
Yeah, they are all local. But now that you mention it, maybe this has something to do with node-webkit (which I'm using), meaning Chromium, uses file:// links internally?
But why would that matter?
Also, what's the point of the .fromCanvas() and .fromImage() functions if this is auto-detected anyway?
I've made an issue about it over there if anyone cares: https://github.com/rogerwang/node-webkit/issues/2787
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.