I am using fabric.js to render images on canvas. Trying to render 3 images with different properties (like localization, source, etc.).
for (i = 0; i < 3; i++) {
  // read data from XML
  // ... read: imageWidth, imageHeight, etc.
  var imageDefaults = {
    width: imageWidth,
    height: imageHeight,
    left: imageX,
    top: canvas.height - imageY,
    angle: imageRotation
  };
  console.log('outside callback fun');
  fabric.Image.fromURL(imagePath, function (image) {
    image.set(imageDefaults).setCoords();                                    
    canvas.add(image);
    console.log('inside callback fun');                 
  });
}
The output console log is:
outside callback fun
outside callback fun
outside callback fun
inside callback fun
inside callback fun
inside callback fun
As a result, I receive 3 images with the same properties (for i == 2).
How to ensure loop continuation only if image is rendered? I tried to set while loop after rendering image, but this loop is running infinitely.
 
     
    