I'm using PreloadJS from CreateJS and am successfully getting an HTMLImageElement
:
const PreloadedAssets = {
logo: null,
// ...
initializeMisc(loadQueue) {
PreloadedAssets.logo = loadQueue.getResult('logo');
console.log(PreloadedAssets.logo);
// this is giving <img src="blob:...">
// ...
},
// ...
}
That's how I add the image to the queue:
this.m_queue.loadFile({id: 'logo', src: 'res/img/logo/logo.png'});
As can be seen, PreloadedAssets.logo
is assigned with a <img>
element. But the problem I'm having is that it outputs a non-relevant blob. I'm also using img.cloneNode(true)
to add the image to a container elsewhere:
let logo = PreloadedAssets.logo.cloneNode(true);
logo.style.transition = 'opacity 0.5s';
logo.style.opacity = '0';
logo.style.position = 'absolute';
logo.style.left = `${ProjectSettings.centerX(logo.offsetWidth)}px`;
logo.style.top = `${ProjectSettings.centerY(logo.offsetHeight) - 200}px`;
this.container.appendChild(logo);
This is giving the following request error:
blob:http://localhost:8080/70b2d643-5a19-43a3-8f69-708eff4bca9e:1
GETblob:http://localhost:8080/70b2d643-5a19-43a3-8f69-708eff4bca9e
net::ERR_FILE_NOT_FOUND
What can I do to preload the image and get a complete Base64 URL with PreloadJS?
Update
I've noted that if I remove the call to cloneNode(true)
, the image displays successfully. How can I still use it?
Instead of
[object Node].cloneNode()
I had to create a helper:That'll clone the image synchronously, resulting in a
data:
URL (base64), not ablob:
one.