public string ImageUrl { get; set; }
Public Property ImageUrl As String
A character string that contains the URL of the image.
This property should be in a URL (Uniform Resource Identifier) style.
This example loads "image1.jpg" and Fits it to the WebImageViewer control.
using Leadtools;
using Leadtools.Codecs;
using Leadtools.Web.Controls;
using Leadtools.ImageProcessing;
public void WebImageViewer_InitWebImageViewer()
{
WebImageViewer mainWebImageViewer = new WebImageViewer();
mainWebImageViewer.HorizontalAlignMode = ImageViewerAlignMode.Center;
mainWebImageViewer.VerticalAlignMode = ImageViewerAlignMode.Center;
mainWebImageViewer.BrowserImageFormat = BrowserImageFormat.Png;
// Enable loading the text files.
// inputProfile.xml Contains the following:
// <ImageGenerator>
// <InputProfile>
// <TxtEnabled>true</TxtEnabled>
// </InputProfile>
// </ImageGenerator>
mainWebImageViewer.InputProfile = @"Resources\inputProfile.xml";
// Set the quality factor for images displayed by the viewer, note that the BrowserImageFormat is set to Png.
// outputProfile.xml Contains the following:
// <ImageGenerator>
// <OutputProfile>
// <PngQualityFactor>9</PngQualityFactor>
// </OutputProfile>
// </ImageGenerator>
mainWebImageViewer.OutputProfile = @"Resources\outputProfile.xml";
mainWebImageViewer.CacheFolder = "MyCacheFolderName";
mainWebImageViewer.SizeMode = ImageViewerSizeMode.FitAlways;
mainWebImageViewer.ResourcesPath = "Resources";
mainWebImageViewer.DropShadowColor = Color.LightGray;
mainWebImageViewer.DropShadowSize = 10;
mainWebImageViewer.ImageBorderSize = 20;
mainWebImageViewer.ImageFrameColor = Color.DarkGray;
mainWebImageViewer.ImageFrameSize = 10;
mainWebImageViewer.ImageUrl = @"Resources\TextFile.txt";
}
Imports Leadtools
Imports Leadtools.Codecs
Imports Leadtools.ImageProcessing
Imports Leadtools.Web.Controls
Public Sub WebImageViewer_InitWebImageViewer()
Dim mainWebImageViewer As WebImageViewer = New WebImageViewer()
mainWebImageViewer.HorizontalAlignMode = ImageViewerAlignMode.Center
mainWebImageViewer.VerticalAlignMode = ImageViewerAlignMode.Center
mainWebImageViewer.BrowserImageFormat = BrowserImageFormat.Png
' Enable loading the text files.
' inputProfile.xml Contains the following:
' <ImageGenerator>
' <InputProfile>
' <TxtEnabled>true</TxtEnabled>
' </InputProfile>
' </ImageGenerator>
mainWebImageViewer.InputProfile = "Resources\inputProfile.xml"
' Set the quality factor for images displayed by the viewer, note that the BrowserImageFormat is set to Png.
' outputProfile.xml Contains the following:
' <ImageGenerator>
' <OutputProfile>
' <PngQualityFactor>9</PngQualityFactor>
' </OutputProfile>
' </ImageGenerator>
mainWebImageViewer.OutputProfile = "Resources\outputProfile.xml"
mainWebImageViewer.CacheFolder = "MyCacheFolderName"
mainWebImageViewer.SizeMode = ImageViewerSizeMode.FitAlways
mainWebImageViewer.ResourcesPath = "Resources"
mainWebImageViewer.DropShadowColor = Color.LightGray
mainWebImageViewer.DropShadowSize = 10
mainWebImageViewer.ImageBorderSize = 20
mainWebImageViewer.ImageFrameColor = Color.DarkGray
mainWebImageViewer.ImageFrameSize = 10
mainWebImageViewer.ImageUrl = "Resources\TextFile.txt"
End Sub
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