Creates a new item from an HTML Image Element.
createFromImage = function(
image,
resolution
)
static createFromImage(
image: HTMLImageElement,
resolution: LeadSizeD
): ImageViewerItem;
image
Source image.
resolution
The resolution to use for the image in dots/inch (DPI). A value of 0,0 or Empty means to use the default image resolution of 96 pixels.
The newly created item, if successful.
This method allows you to quickly create an item from an HTML Image Element. It is the equivalent of the following code:
var item = new lt.Controls.ImageViewerItem();
item.image = image;
item.resolution = resolution; // Optional
Use CreateFromCanvas to create an item from an HTML5 Canvas Element. CreateFromElement can also be used as a shortcut for either CreateFromImage or CreateFromCanvas. Passing a valid HTML Image Element to CreateFromElement will create an ImageViewerItem with the Image property set, just as it does with CreateFromImage. Similarly, passing a valid HTML5 Canvas Element to CreateFromElement will create an ImageViewerItem with the Canvas property set, just as it does with CreateFromCanvas. The item can have a value in only one of Image, Element or Canvas. Setting one value will automatically delete the values of the others.
The item is not added to an ImageViewer using this method. You should use the Items collection to add or insert the item before it can be displayed. If an ImageViewer instance exists at the time this method is called, consider using AddFromImage, AddFromElement, InsertFromImage, or InsertFromElement instead.
Help Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document