// find element by attribute
var he = instance.GetTabByAddress("page").GetDocumentByAddress("0").FindElementByAttribute("input:checkbox", "fulltag", "input:checkbox", "text", 0);
// draw to bitmap element, this element is not image and does not contain image
var toBitmap1 = he.DrawAsBitmap(false);
// find element by attribute
he = instance.GetTabByAddress("page").GetDocumentByAddress("0").FindElementByAttribute("a", "href", "http://lessons.zennolab.com/ru/index", "regexp", 0);
// draw to bitmap element, this element is image or contains image
var toBitmap2 = he.DrawAsBitmap(true);
// find element by attribute
$he = $instance->GetTabByAddress("page")->GetDocumentByAddress("0")->FindElementByAttribute("input:checkbox", "fulltag", "input:checkbox", "text", 0);
// draw to bitmap element, this element is not image and does not contain image
$toBitmap1 = $he->DrawAsBitmap(false);
// find element by attribute
$he = $instance->GetTabByAddress("page")->GetDocumentByAddress("0")->FindElementByAttribute("a", "href", "http://lessons.zennolab.com/ru/index", "regexp", 0);
// draw to bitmap element, this element is image or contains image
$toBitmap2 = $he->DrawAsBitmap(true);