Returns the image of the specified element.
function GetElementImage(aElement: TCSElement): TCSImage;
//Loading page with image (in this case - a captcha) LoadURI('http://www.google.com/recaptcha/learnmore'); //Obtain an element that contains an image var ImageElement:=GetElement('img',0,['src'],['google.com/recaptcha/']); //Obtain an image of the element var Image:=GetElementImage(ImageElement); //Output to the log pixel color with coordinates (10,10) Log(IntToStr(Image.Pixels[10,10]));