Floater image of this item.
Object.defineProperty(ImageViewerItem.prototype, 'floater',
get: function(),
set: function(value)
)
floater: HTMLCanvasElement;
The floater image of this item. Default value is null.
The image viewer supports a floater image that can be dragged with the mouse or touch when ImageViewerFloaterInteractiveMode is used.
The floater outline can be rendered or animated using FloaterRegionRenderMode.
The position, scale and rotation of the floater can be manipulated with the FloaterTransform property.
FloaterOpacity can be used to set any opacity value for the floater from completely transparent to fully opaque and in between.
Changing the value of this property will fire the ItemChanged event with ImageViewerItemChangedReason.Floater.
Floater property of ImageViewer will update this member if this is the active item when the viewer is used in single item mode.
For more information, refer to Image Viewer Items.
var item = null;
var image = null;
if (this._imageViewer.items.count > 0) {
item = this._imageViewer.items.item(0);
canvas = item.canvas;
}
if (canvas == null)
return;
var ctx = canvas.getContext("2d");
var imageData = ctx.getImageData(10, 10, item.size.width / 2, item.size.height / 2);
item.floater = document.createElement("canvas");
var ctx = item.floater.getContext("2d");
ctx.putImageData(imageData, imageData.width, imageData.height);
var transform = lt.LeadMatrix.identity;
transform.rotateAt(45, imageData.width / 2, imageData.height / 2);
item.floaterTransform = lt.LeadMatrix.multiply(transform, item.floaterTransform);
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET