Products | Support | Email a link to this topic. | Send comments on this topic. | Back to Introduction - All Topics | Help Version 19.0.5.5
|
Leadtools.Web.Controls Namespace > WebImageViewer Class > OpenImageUrl Method : OpenImageUrl(String,Int32) Method |
'Declaration Public Overloads Sub OpenImageUrl( _ ByVal imageUrl As String, _ ByVal pageIndex As Integer _ )
'Usage Dim instance As WebImageViewer Dim imageUrl As String Dim pageIndex As Integer instance.OpenImageUrl(imageUrl, pageIndex)
This example initializes the WebImageViewer control and load the third page of "multipage.tif", also it initializes the WebImagePanViewer control.
Imports Leadtools Imports Leadtools.Codecs Imports Leadtools.ImageProcessing Imports Leadtools.Web.Controls <TestMethod()> _ Public Sub WebImageViewer_OpenImageUrl() Dim webImagePanViewer As WebImagePanViewer = New WebImagePanViewer() Dim mainWebImageViewer As WebImageViewer = New WebImageViewer() mainWebImageViewer.InteractiveZoomPercent = 15 mainWebImageViewer.MouseInteractiveMode.LeftButton = ImageViewerMouseInteractiveMode.ZoomIn mainWebImageViewer.MouseInteractiveMode.RightButton = ImageViewerMouseInteractiveMode.ZoomOut mainWebImageViewer.ScaleFactor = 1.5 mainWebImageViewer.TileSize = New Size(450, 450) ' Prevent the Internet Explorer from loading the viewer images in the Temporary Internet Folder. mainWebImageViewer.DisableBrowserCaching = True mainWebImageViewer.OpenImageUrl("Resources\multipage.tif", 1) webImagePanViewer.HorizontalAlignMode = ImageViewerAlignMode.Center webImagePanViewer.VerticalAlignMode = ImageViewerAlignMode.Center webImagePanViewer.RectangleColor = Color.Blue ' Prevent the Internet Explorer from loading the PanViewer images in the Temporary Internet Folder. webImagePanViewer.DisableBrowserCaching = True webImagePanViewer.ViewerID = mainWebImageViewer.ClientID End Sub
using Leadtools; using Leadtools.Codecs; using Leadtools.Web.Controls; using Leadtools.ImageProcessing; public void WebImageViewer_OpenImageUrl() { WebImageViewer mainWebImageViewer = new WebImageViewer(); WebImagePanViewer webImagePanViewer = new WebImagePanViewer(); mainWebImageViewer.InteractiveZoomPercent = 15; mainWebImageViewer.MouseInteractiveMode.LeftButton = ImageViewerMouseInteractiveMode.ZoomIn; mainWebImageViewer.MouseInteractiveMode.RightButton = ImageViewerMouseInteractiveMode.ZoomOut; mainWebImageViewer.ScaleFactor = 1.5; mainWebImageViewer.TileSize = new Size(450, 450); // Prevent the Internet Explorer from loading the viewer images in the Temporary Internet Folder. mainWebImageViewer.DisableBrowserCaching = true; mainWebImageViewer.OpenImageUrl(@"Resources\multipage.tif", 1); webImagePanViewer.HorizontalAlignMode = ImageViewerAlignMode.Center; webImagePanViewer.VerticalAlignMode = ImageViewerAlignMode.Center; webImagePanViewer.RectangleColor = Color.Blue; // Prevent the Internet Explorer from loading the PanViewer images in the Temporary Internet Folder. webImagePanViewer.DisableBrowserCaching = true; webImagePanViewer.ViewerID = mainWebImageViewer.ClientID; }
/// <!--Leadtools.Web.Controls.WebImageViewer.ImageUrl--> /// <!--Leadtools.Web.Controls.WebImageViewer.ImageUrl--> /// <!--Leadtools.Web.Controls.WebImageViewer.OpenImageUrl--> /// <!--Leadtools.Web.Controls.WebImageViewer.OpenImageUrl--> /// <!--Leadtools.Web.Controls.WebImageViewer.ApplyCommand--> /// <!--Leadtools.Web.Controls.WebImageViewer.ApplyCommand--> function WebImageViewer_OpenImageUrl(mainWebImageViewer) { mainWebImageViewer.setInteractiveZoomPercent(15); mainWebImageViewer.getMouseInteractiveMode().setLeftButton(ImageViewerMouseInteractiveMode.ZoomIn); mainWebImageViewer.getMouseInteractiveMode().setRightButton(ImageViewerMouseInteractiveMode.ZoomOut); mainWebImageViewer.setScaleFactor(1.5); mainWebImageViewer.setUseDpi(false); mainWebImageViewer.setTileSize(new ltwfSize(450, 450)); mainWebImageViewer.OpenImageUrl("Resources\\multipage.tif", 2); }