Leadtools.Services.Raster.DataContracts Requires Document/Medical product license | Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
MagicWandRasterRegionData Class
See Also  Members   Example 
Leadtools.Services.Raster.DataContracts Namespace : MagicWandRasterRegionData Class



Creates or updates the image region based on the color found at a specified point.

Syntax

Visual Basic (Declaration) 
<DataContractAttribute(Namespace="http://Leadtools.Services.Raster.DataContracts/2009/01", Name="MagicWandRasterRegionData")>
Public Class MagicWandRasterRegionData 
   Inherits RasterRegionData
Visual Basic (Usage)Copy Code
Dim instance As MagicWandRasterRegionData
C# 
[DataContractAttribute(Namespace="http://Leadtools.Services.Raster.DataContracts/2009/01", Name="MagicWandRasterRegionData")]
public class MagicWandRasterRegionData : RasterRegionData 
C++/CLI 
[DataContractAttribute(Namespace="http://Leadtools.Services.Raster.DataContracts/2009/01", Name="MagicWandRasterRegionData")]
public ref class MagicWandRasterRegionData : public RasterRegionData 

Example

Visual BasicCopy Code
Public Sub MagicWandRasterRegionDataExample()
   Dim client As EffectsProcessingServiceClient = New EffectsProcessingServiceClient()
   Dim sourceBinaryData As RawBinaryData = New RawBinaryData()
   sourceBinaryData.Data = File.ReadAllBytes(LeadtoolsExamples.Common.ImagesPath.Path & "image1.cmp")

   Dim convertOptions As RasterConvertOptions = New RasterConvertOptions()

   convertOptions.Source = sourceBinaryData
   convertOptions.Destination = Nothing
   convertOptions.Format = RasterImageFormat.Bmp
   convertOptions.FirstPage = 1
   convertOptions.LastPage = 1
   convertOptions.BitsPerPixel = 24
   convertOptions.QualityFactor = 2

   Dim region As MagicWandRasterRegionData = New MagicWandRasterRegionData()
   region.CombineMode = RasterRegionCombineMode.Set

   ' Specify a pixel in the upper left of the displayed image
   Dim pt As LeadPoint = New LeadPoint()
   pt.X = 100
   pt.Y = 100

   region.Location = pt

   ' Create a magic wand region at this point
   region.LowerToleranceColor = "#00141E96"
   region.UpperToleranceColor = "#000F1E0A"

   Dim request As SharpenRequest = New SharpenRequest()

   request.ConvertOptions = convertOptions
   request.RegionData = region
   request.Sharpness = 1000

   Dim response As CommandResponse = client.Sharpen(request)
   If Not response.Destination Is Nothing Then
      File.WriteAllBytes(LeadtoolsExamples.Common.ImagesPath.Path & "MagicWandRasterRegionData.bmp", (TryCast(response.Destination, RawBinaryData)).Data)
   End If

   client.Close()
End Sub
C#Copy Code
public void MagicWandRasterRegionDataExample() 

   EffectsProcessingServiceClient client = new EffectsProcessingServiceClient(); 
   RawBinaryData sourceBinaryData = new RawBinaryData(); 
   sourceBinaryData.Data = File.ReadAllBytes(LeadtoolsExamples.Common.ImagesPath.Path + "image1.cmp"); 
 
   RasterConvertOptions convertOptions = new RasterConvertOptions(); 
 
   convertOptions.Source = sourceBinaryData; 
   convertOptions.Destination = null; 
   convertOptions.Format = RasterImageFormat.Bmp; 
   convertOptions.FirstPage = 1; 
   convertOptions.LastPage = 1; 
   convertOptions.BitsPerPixel = 24; 
   convertOptions.QualityFactor = 2; 
 
   MagicWandRasterRegionData region = new MagicWandRasterRegionData(); 
   region.CombineMode = RasterRegionCombineMode.Set; 
 
   // Specify a pixel in the upper left of the displayed image 
   LeadPoint pt = new LeadPoint(); 
   pt.X = 100; 
   pt.Y = 100; 
 
   region.Location = pt; 
 
   // Create a magic wand region at this point 
   region.LowerToleranceColor = "#00141E96"; 
   region.UpperToleranceColor = "#000F1E0A"; 
 
   SharpenRequest request = new SharpenRequest(); 
 
   request.ConvertOptions = convertOptions; 
   request.RegionData = region; 
   request.Sharpness = 1000; 
 
   CommandResponse response = client.Sharpen(request); 
   if (response.Destination != null) 
   { 
      File.WriteAllBytes(LeadtoolsExamples.Common.ImagesPath.Path + "MagicWandRasterRegionData.bmp", (response.Destination as RawBinaryData).Data); 
   } 
 
   client.Close(); 
}

Remarks

For gray scale bitmaps:

The minimum channel tolerance value of LowerToleranceColor will be used to set the lower stopping point, and the value of UpperToleranceColor will be used to set the upper stopping point. For example, if the value of the pixel at (x, y) is (125, 125, 125) and LowerToleranceColor is (20,30,15), the smallest value of the triplet (15) will be used to create the lower stopping point of (110,110,110). If UpperToleranceColor is (10,25,20), the smallest value of that triplet (10) will be used to create the upper stopping point of (135,135,135).

To update an existing region, specify how the new region is to be combined with the existing one using the RasterRegionData.CombineMode parameter. For more information, refer to RasterRegionCombineMode.

Inheritance Hierarchy

System.Object
   Leadtools.Services.Raster.DataContracts.RasterRegionData
      Leadtools.Services.Raster.DataContracts.MagicWandRasterRegionData

Requirements

Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family

See Also

Applications developed with LEADTOOLS WCF components require runtime licenses. Server licensing is required for applications on a server. For more information, refer to: Imaging Pro/Document/Medical Features