Gets or sets a value that indicates whether to clone all the pages if the source image is multi-page.
public bool AllPages { get; set; } Public Property AllPages As Boolean public bool AllPages {get; set;} @property (nonatomic, assign) BOOL allPages public final boolean getAllPages()public final void setAllPages(boolean value)
<br/>get_AllPages();<br/>set_AllPages(value);<br/>Object.defineProperty('AllPages'); true to clone all the pages if the source image is multi-page; false, otherwise.
If the source image (the image passed to the RasterCommand.Run method) contains multiple pages, then you can use the AllPages property to control whether the CloneCommand will create a copy of the current active page or all the pages in the image.
Note that when the source image has multiple pages and the value of AllPages was set to true, then the RasterCommand.Progress event will fire from 0 to 100 for each page processed. If an overall progress percentage is desired, then you can inspect the RasterImage.Page and RasterImage.PageCount properties of the SourceImage property to calculate this value as shown in the example below.
The default value of this property is false to clone only the current page.
This example will clone a multi-page image and shows the over-all progress value.
using Leadtools;using Leadtools.Codecs;using Leadtools.ImageProcessing;using LeadtoolsExamples.Common;private void CloneAllTest(){RasterCodecs codecs = new RasterCodecs();// Create a multi-page image for testing purposesRasterImage image = null;for (int i = 1; i <= 4; i++){RasterImage pageImage = codecs.Load(Path.Combine(ImagesPath.Path, "OCR" + i.ToString() + ".tif"));if (image == null)image = pageImage;else{image.AddPage(pageImage);pageImage.Dispose();}}Console.WriteLine("Input image has {0} pages", image.PageCount);// Clone all pagesCloneCommand cloneCmd = new CloneCommand();cloneCmd.AllPages = true;cloneCmd.Progress += new EventHandler<RasterCommandProgressEventArgs>(cloneCmd_Progress);cloneCmd.Run(image);cloneCmd.Progress -= new EventHandler<RasterCommandProgressEventArgs>(cloneCmd_Progress);RasterImage destinationImage = cloneCmd.DestinationImage;Console.WriteLine("Cloned image has {0} pages", destinationImage.PageCount);destinationImage.Dispose();image.Dispose();codecs.Dispose();}private void cloneCmd_Progress(object sender, RasterCommandProgressEventArgs e){// By using the SourceImage property of the CloneCommand we can find out// the progress for the current page as well as the overallCloneCommand cmd = sender as CloneCommand;int overallPercent;if (cmd.AllPages && cmd.SourceImage.PageCount > 1){// For multiple-pages, the command will fire the Progress event from 0 to 100 for each page// Use the source image Page property to find out where we are in overall completetionoverallPercent = ((cmd.SourceImage.Page - 1) * 100 + e.Percent) / cmd.SourceImage.PageCount;}else{// Otherwise, the percent is the same as the current pageoverallPercent = e.Percent;}Console.WriteLine("Current page completion: {0} of {1} - {2}% - Overall image completion {3}%", cmd.SourceImage.Page, cmd.SourceImage.PageCount, e.Percent, overallPercent);}
Imports LeadtoolsImports Leadtools.CodecsImports Leadtools.ImageProcessingPrivate Sub CloneAllTest()Dim codecs As New RasterCodecs()' Create a multi-page image for testing purposesDim image As RasterImage = NothingFor i As Integer = 1 To 4Dim pageImage As RasterImage = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "\OCR" + i.ToString() + ".tif"))If IsNothing(image) Thenimage = pageImageElseimage.AddPage(pageImage)pageImage.Dispose()End IfNextConsole.WriteLine("Input image has {0} pages", image.PageCount)' Clone all pagesDim cloneCmd As New CloneCommand()cloneCmd.AllPages = TrueAddHandler cloneCmd.Progress, AddressOf cloneCmd_ProgresscloneCmd.Run(image)RemoveHandler cloneCmd.Progress, AddressOf cloneCmd_ProgressDim destinationImage As RasterImage = cloneCmd.DestinationImageConsole.WriteLine("Cloned image has {0} pages", destinationImage.PageCount)destinationImage.Dispose()image.Dispose()codecs.Dispose()End SubPrivate Sub cloneCmd_Progress(ByVal sender As Object, ByVal e As RasterCommandProgressEventArgs)' By using the SourceImage property of the CloneCommand we can find out' the progress for the current page as well as the overallDim cmd As CloneCommand = DirectCast(sender, CloneCommand)Dim overallPercent As IntegerIf cmd.AllPages AndAlso cmd.SourceImage.PageCount > 1 Then' For multiple-pages, the command will fire the Progress event from 0 to 100 for each page' Use the source image Page property to find out where we are in overall completetionoverallPercent = ((cmd.SourceImage.Page - 1) * 100 + e.Percent) \ cmd.SourceImage.PageCountElse' Otherwise, the percent is the same as the current pageoverallPercent = e.PercentEnd IfConsole.WriteLine("Current page completion: {0} of {1} - {2}% - Overall image completion {3}%",cmd.SourceImage.Page, cmd.SourceImage.PageCount, e.Percent, overallPercent)End SubPublic NotInheritable Class LEAD_VARSPublic Const ImagesDir As String = "C:\Users\Public\Documents\LEADTOOLS Images"End Class
using Leadtools;using Leadtools.Codecs;using Leadtools.Examples;using Leadtools.ImageProcessing;using Leadtools.Windows.Media;private void CloneAllTest(RasterImage image1, RasterImage image2, RasterImage image3, RasterImage image4){// Create a multi-page image for testing purposesRasterImage image = null;image = image1;image.AddPage(image2);image.AddPage(image3);image.AddPage(image4);Debug.WriteLine("Input image has {0} pages", image.PageCount);// Clone all pagesCloneCommand cloneCmd = new CloneCommand();cloneCmd.AllPages = true;cloneCmd.Progress += new EventHandler<RasterCommandProgressEventArgs>(cloneCmd_Progress);cloneCmd.Run(image);cloneCmd.Progress -= new EventHandler<RasterCommandProgressEventArgs>(cloneCmd_Progress);RasterImage destinationImage = cloneCmd.DestinationImage;Debug.WriteLine("Cloned image has {0} pages", destinationImage.PageCount);destinationImage.Dispose();image.Dispose();image1.Dispose();image2.Dispose();image3.Dispose();image4.Dispose();}private void cloneCmd_Progress(object sender, RasterCommandProgressEventArgs e){// By using the SourceImage property of the CloneCommand we can find out// the progress for the current page as well as the overallCloneCommand cmd = sender as CloneCommand;int overallPercent;if (cmd.AllPages && cmd.SourceImage.PageCount > 1){// For multiple-pages, the command will fire the Progress event from 0 to 100 for each page// Use the source image Page property to find out where we are in overall completetionoverallPercent = ((cmd.SourceImage.Page - 1) * 100 + e.Percent) / cmd.SourceImage.PageCount;}else{// Otherwise, the percent is the same as the current pageoverallPercent = e.Percent;}Debug.WriteLine("Current page completion: {0} of {1} - {2}% - Overall image completion {3}%", cmd.SourceImage.Page, cmd.SourceImage.PageCount, e.Percent, overallPercent);}
Imports LeadtoolsImports Leadtools.CodecsImports Leadtools.ImageProcessingImports Leadtools.Windows.MediaPrivate Sub CloneAllTest(ByVal image1 As RasterImage, ByVal image2 As RasterImage, ByVal image3 As RasterImage, ByVal image4 As RasterImage)' Create a multi-page image for testing purposesDim image As RasterImage = Nothingimage = image1image.AddPage(image2)image.AddPage(image3)image.AddPage(image4)Debug.WriteLine("Input image has {0} pages", image.PageCount)' Clone all pagesDim cloneCmd As CloneCommand = New CloneCommand()cloneCmd.AllPages = TrueAddHandler cloneCmd.Progress, AddressOf cloneCmd_ProgresscloneCmd.Run(image)RemoveHandler cloneCmd.Progress, AddressOf cloneCmd_ProgressDim destinationImage As RasterImage = cloneCmd.DestinationImageDebug.WriteLine("Cloned image has {0} pages", destinationImage.PageCount)destinationImage.Dispose()image.Dispose()image1.Dispose()image2.Dispose()image3.Dispose()image4.Dispose()End SubPrivate Sub cloneCmd_Progress(ByVal sender As Object, ByVal e As RasterCommandProgressEventArgs)' By using the SourceImage property of the CloneCommand we can find out' the progress for the current page as well as the overallDim cmd As CloneCommand = TryCast(sender, CloneCommand)Dim overallPercent As IntegerIf cmd.AllPages AndAlso cmd.SourceImage.PageCount > 1 Then' For multiple-pages, the command will fire the Progress event from 0 to 100 for each page' Use the source image Page property to find out where we are in overall completetionoverallPercent = ((cmd.SourceImage.Page - 1) * 100 + e.Percent) / cmd.SourceImage.PageCountElse' Otherwise, the percent is the same as the current pageoverallPercent = e.PercentEnd IfDebug.WriteLine("Current page completion: {0} of {1} - {2}% - Overall image completion {3}%", cmd.SourceImage.Page, cmd.SourceImage.PageCount, e.Percent, overallPercent)End Sub
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
