The problem was the way that I was loading my Images, I should’ve been doing:
var image = new Image();
image.src = "https://stackoverflow.com/questions/22430671/imagesource.jpg";
But instead I was get the elements by id from the document
page.
Resources:
Explanation on loading images
Explanation on how html loads images