name
getNumbOfImages ( )
import prohtml.*;

HtmlImageFinder htmlImageFinder;

void setup(){
  
  //insert your url here
  htmlImageFinder = new HtmlImageFinder("http://www.yoururl.com");

  PImage[] images = new PImage[htmlImageFinder.getNumbOfImages()];
  
  int maxHeight=0;
  int mywidth = 0;

  for(int i = 0;i< images.length;i++){
    images[i] = loadImage(htmlImageFinder.getImageLink(i));   
    maxHeight = max(images[i].height,maxHeight);
    mywidth+=10;
  }
  
  size(mywidth,maxHeight);
  
  for(int i = 0;i< images.length;i++){
    image(images[i],i*10,0);
  }
}
description
Use this Method to get the number of all images HtmlImageFinder has found in a HTML document.
syntax
getNumbOfImages();
returns
int, number of images found in the scanned page
usage
Web & Application
related