LEADTOOLS GDI/GDI+ (Leadtools.Drawing assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.29
FillRegion(RasterImage,IntPtr,RasterRegionXForm,RasterColor) Method
See Also 



image
The source image.
hdc
Windows device context handle where the image is displayed and where the frame is to appear.
xform
Leadtools.RasterRegionXForm object that LEADTOOLS uses to translate between display coordinates and image coordinates.
color
The color value to be XORed with colors within a region to determine the new colors for displaying the region. The color corresponding to a particular part of the region is determined as follows: Region Color Displayed = (color of pixel in region) XOR (crRgnColor)
image
The source image.
hdc
Windows device context handle where the image is displayed and where the frame is to appear.
xform
Leadtools.RasterRegionXForm object that LEADTOOLS uses to translate between display coordinates and image coordinates.
color
The color value to be XORed with colors within a region to determine the new colors for displaying the region. The color corresponding to a particular part of the region is determined as follows: Region Color Displayed = (color of pixel in region) XOR (crRgnColor)
Highlights a region by displaying a filled, color representation of the region in the given Windows device context handle.

Syntax

Visual Basic (Declaration) 
Overloads Public Shared Sub FillRegion( _
   ByVal image As RasterImage, _
   ByVal hdc As IntPtr, _
   ByVal xform As RasterRegionXForm, _
   ByVal color As RasterColor _
) 
Visual Basic (Usage)Copy Code
Dim image As RasterImage
Dim hdc As IntPtr
Dim xform As RasterRegionXForm
Dim color As RasterColor
 
RasterImagePainter.FillRegion(image, hdc, xform, color)
C# 
public static void FillRegion( 
   RasterImage image,
   IntPtr hdc,
   RasterRegionXForm xform,
   RasterColor color
)
C++/CLI 
public:
static void FillRegion( 
   RasterImage^ image,
   IntPtr hdc,
   RasterRegionXForm^ xform,
   RasterColor color
) 

Parameters

image
The source image.
hdc
Windows device context handle where the image is displayed and where the frame is to appear.
xform
Leadtools.RasterRegionXForm object that LEADTOOLS uses to translate between display coordinates and image coordinates.
color
The color value to be XORed with colors within a region to determine the new colors for displaying the region. The color corresponding to a particular part of the region is determined as follows: Region Color Displayed = (color of pixel in region) XOR (crRgnColor)

Example

Remarks

This method is particularly useful when displaying regions with black and white images. All black pixels in a region are displayed with color specified by color. and all white pixels are displayed ~(color). For example, suppose that color is light green (BGR 0x80FF40). All black pixels in the region are displayed as color. All white pixels in the region are displayed as 0xFFFFFF XOR 0x80FF40 = 0x7F00BF, which is purple.

For more information refer to RasterImage and GDI/GDI+.

Requirements

Target Platforms: Silverlight 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7, MAC OS/X (Intel Only)

See Also