Error processing SSI file
LEADTOOLS JavaScript (Leadtools.Controls)

GetItemViewBounds Method

Show in webframe
Example 
The item. Must be a valid item inside this viewer.
The item part requested.
true to return the bounding rectangle intersected with the current viewer control area, otherwise; false.
Current physical (in control pixel coordinates) bounds of any part of an item.
Syntax
 function Leadtools.Controls.ImageViewer.getItemViewBounds( 
   item ,
   part ,
   clipped 
)

Parameters

ParameterTypeDescription
itemImageViewerItemThe item. Must be a valid item inside this viewer.
partImageViewerItemPartThe item part requested.
clippedbooltrue to return the bounding rectangle intersected with the current viewer control area, otherwise; false.

Return Value

TypeDescription
LeadRectD The bounding rectangle in pixels or LeadRectD.Empty if the item is not visible, does not have an image or outside the clipping area.
Remarks

Use ConvertBoundsToView to convert a bound from logical to physical coordinates.

For more information refer to Image Viewer Appearance, Image Viewer Transformation, and Image Viewer Bounds and Transform.

Example

This example will show how to use GetItemBounds to perform manual hit-testing on the item.

Start with the ImageViewer example, remove all the code inside the example function (search for the "// TODO: add example code here" comment) and insert the following code:

// Clear all the images already the viewer
this._imageViewer.items.clear();
// Use vertical view layout
this._imageViewer.viewLayout = new lt.Controls.ImageViewerVerticalViewLayout();
// Make sure the item size is larger than the image size (thumbnails mode)
this._imageViewer.itemSize = lt.LeadSizeD.create(200, 200);
this._imageViewer.itemPadding = lt.Controls.ControlPadding.create(8, 8, 8, 20);
this._imageViewer.imageBorderThickness = 1;

// Add 4 items to the viewer
for (var page = 1; page <= 4; page++) {
   var item = new lt.Controls.ImageViewerItem();
   var imageUrl = "http://demo.leadtools.com/images/png/ocr" + page.toString() + ".png";
   item.url = imageUrl;
   this._imageViewer.items.add(item);
}

this._imageViewer.interactiveService.tap.add(function (sender, e) {
   // Loop through each item, get the view bounds of the image (the physical location and size on the viewer surface of the item)
   // and perform hit-testing
   for (var i = 0; i < this.owner.items.count; i++) {
      var item = this.owner.items.item(i);

      // Pass part as image and clipped as true, we are only interested on what we are seeing
      var bounds = this.owner.getItemViewBounds(item, lt.Controls.ImageViewerItemPart.image, true);
      // Hit-test. GetItemViewBounds returns the value in the control coordinates, same as the mouse click
      if (bounds.contains(e.position.x, e.position.y)) {
         alert("Clicked the image of item at index " + this.owner.items.indexOf(item));
         return;
      }
   }
});
See Also

Reference

ImageViewer Object
ImageViewer Members

Error processing SSI file