Checking for multiple images loaded

后端 未结 7 2185
死守一世寂寞
死守一世寂寞 2021-02-20 09:26

I\'m using the canvas feature of html5. I\'ve got some images to draw on the canvas and I need to check that they have all loaded before I can use them.

I have declared

相关标签:
7条回答
  • 2021-02-20 09:41

    Just onload method in for loop does not solve this task, since onload method is executing asynchronously in the loop. So that larger images in the middle of a loop may be skipped in case if you have some sort of callback just for the last image in the loop.

    You can use Async Await to chain the loop to track image loading synchronously.

    function loadEachImage(value) {
       return new Promise((resolve) => {
          var thumb_img = new Image();
          thumb_img.src = value;
          thumb_img.onload = function () {
             console.log(value);
             resolve(value); // Can be image width or height values here
          }
       });
    }
    
    function loadImages() {
       let i;
       let promises = [];
    
       $('.article-thumb img').each(function(i) {
          promises.push(loadEachImage( $(this).attr('src') ));
       });
    
       Promise.all(promises)
          .then((results) => {
              console.log("images loaded:", results); // As a `results` you can get values of all images and process it
          })
          .catch((e) => {
             // Handle errors here
          });
    }
    
    loadImages();
    

    But the disadvantage of this method that it increases loading time since all images are loading synchronously.


    Also you can use simple for loop and run callback after each iteration to update/process latest loaded image value. So that you do not have to wait when smaller images are loaded only after the largest.

    var article_thumb_h = [];
    var article_thumb_min_h = 0;
    
    $('.article-thumb img').each(function(i) {
       var thumb_img = new Image();
       thumb_img.src = $(this).attr('src');
       thumb_img.onload = function () {
          article_thumb_h.push( this.height ); // Push height of image whatever is loaded
          article_thumb_min_h = Math.min.apply(null, article_thumb_h); // Get min height from array
          $('.article-thumb img').height( article_thumb_min_h ); // Update height for all images asynchronously
       }
    });
    

    Or just use this approach to make a callback after all images are loaded.

    It all depends on what you want to do. Hope it will help to somebody.

    0 讨论(0)
  • 2021-02-20 09:46

    The solution with Promise would be:

    const images = [new Image(), new Image()]
    for (const image of images) {
      image.src = 'https://picsum.photos/200'
    }
    
    function imageIsLoaded(image) {
      return new Promise(resolve => {
        image.onload = () => resolve()
        image.onerror = () => resolve()
      })
    }
    
    Promise.all(images.map(imageIsLoaded)).then(() => {
      alert('All images are loaded')
    })

    0 讨论(0)
  • 2021-02-20 09:52

    try this code:

    <div class="image-wrap" data-id="2">
    <img src="https://www.hd-wallpapersdownload.com/script/bulk-upload/desktop-free-peacock-feather-images-dowload.jpg" class="img-load" data-id="1">
    <i class="fa fa-spinner fa-spin loader-2" style="font-size:24px"></i>
    </div>
    
    <div class="image-wrap" data-id="3">
    <img src="http://diagramcenter.org/wp-content/uploads/2016/03/image.png" class="img-load" data-id="1">
    <i class="fa fa-spinner fa-spin loader-3" style="font-size:24px"></i>
    </div>
    <script type="text/javascript">
        jQuery(document).ready(function(){
            var allImages = jQuery(".img-load").length;
            jQuery(".img-load").each(function(){
                var image = jQuery(this);
                jQuery('<img />').attr('src', image.attr('src')).one("load",function(){
                    var dataid = image.parent().attr('data-id');
                    console.log(dataid);
                     console.log('load');
                });
            });
    
        });
    
    </script>
    
    0 讨论(0)
  • 2021-02-20 09:54

    Can't you simply use a loop and assign the same function to all onloads?

    var myImages = ["green.png", "blue.png"];
    
    (function() {
      var imageCount = myImages.length;
      var loadedCount = 0, errorCount = 0;
    
      var checkAllLoaded = function() {
        if (loadedCount + errorCount == imageCount ) {
           // do what you need to do.
        }
      };
    
      var onload = function() {
        loadedCount++;
        checkAllLoaded();
      }, onerror = function() {
        errorCount++;
        checkAllLoaded();
      };   
    
      for (var i = 0; i < imageCount; i++) {
        var img = new Image();
        img.onload = onload; 
        img.onerror = onerror;
        img.src = myImages[i];
      }
    })();
    
    0 讨论(0)
  • 2021-02-20 09:55

    If you want to call a function when all the images are loaded, You can try following, it worked for me

    var imageCount = images.length;
    var imagesLoaded = 0;
    
    for(var i=0; i<imageCount; i++){
        images[i].onload = function(){
            imagesLoaded++;
            if(imagesLoaded == imageCount){
                allLoaded();
            }
        }
    }
    
    function allLoaded(){
        drawImages();
    }
    
    0 讨论(0)
  • 2021-02-20 10:01

    A hackish way to do it is add the JS command in another file and place it in the footer. This way it loads last.

    However, using jQuery(document).ready also works better than the native window.onload.

    You are using Chrome aren't you?

    0 讨论(0)
提交回复
热议问题