Leadtools Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
Paint(IntPtr,Rectangle,Rectangle,RasterPaintProperties) Method
See Also  Example
Leadtools Namespace > RasterImage Class > Paint Method : Paint(IntPtr,Rectangle,Rectangle,RasterPaintProperties) Method



hdc
The destination Windows device context where the image will be displayed.
srcRect

A Rectangle object that specifies the part of the image to use as the display source.

The coordinates of the srcRect are relative to the image. You can pass Rectangle.Empty to use the default, which matches the image.

destRect
Rectangle

A Rectangle object that determines how the image is scaled and positioned in hdc.

The coordinates of destRect are relative to the hdc handle. There is no default for this parameter. You must specify the Rectangle values.

properties
Options for the display.
Displays this RasterImage in the given Windows device context handle.

Syntax

Visual Basic (Declaration) 
Public Overloads Sub Paint( _
   ByVal hdc As IntPtr, _
   ByVal srcRect As Rectangle, _
   ByVal destRect As Rectangle, _
   ByVal properties As RasterPaintProperties _
) 
Visual Basic (Usage)Copy Code
Dim instance As RasterImage
Dim hdc As IntPtr
Dim srcRect As Rectangle
Dim destRect As Rectangle
Dim properties As RasterPaintProperties
 
instance.Paint(hdc, srcRect, destRect, properties)
C# 
public void Paint( 
   IntPtr hdc,
   Rectangle srcRect,
   Rectangle destRect,
   RasterPaintProperties properties
)
C++/CLI 
public:
void Paint( 
   IntPtr hdc,
   Rectangle srcRect,
   Rectangle destRect,
   RasterPaintProperties properties
) 

Parameters

hdc
The destination Windows device context where the image will be displayed.
srcRect

A Rectangle object that specifies the part of the image to use as the display source.

The coordinates of the srcRect are relative to the image. You can pass Rectangle.Empty to use the default, which matches the image.

destRect
Rectangle

A Rectangle object that determines how the image is scaled and positioned in hdc.

The coordinates of destRect are relative to the hdc handle. There is no default for this parameter. You must specify the Rectangle values.

properties
Options for the display.

Example

Visual BasicCopy Code
Public Sub PaintDCExample()
   Dim f As PaintDCForm = New PaintDCForm()
   f.ShowDialog()
End Sub

Private Class PaintDCForm : Inherits Form
   Private image As RasterImage
   Private props As RasterPaintProperties

   Public Sub New()
      ' Load the image
      RasterCodecs.Startup()
      Dim codecs As RasterCodecs = New RasterCodecs()

      Dim srcFileName As String = LeadtoolsExamples.Common.ImagesPath.Path + "OCR1.TIF"
      image = codecs.Load(srcFileName)

      Text = "Normal - doubleclick to change."
      props = RasterPaintProperties.Default
      props.UsePaintPalette = True
   End Sub

   Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)
      ' Clean up
      If disposing Then
         image.Dispose()
         RasterCodecs.Shutdown()
      End If

      MyBase.Dispose(disposing)
   End Sub

   Protected Overrides Sub OnDoubleClick(ByVal e As EventArgs)
      If (props.PaintDisplayMode And RasterPaintDisplayModeFlags.ScaleToGray) = RasterPaintDisplayModeFlags.ScaleToGray Then
         Text = "Normal - doubleclick to change."
         props.PaintDisplayMode = props.PaintDisplayMode And Not RasterPaintDisplayModeFlags.ScaleToGray
      Else
         Text = "ScaleToGray - doubleclick to change."
         props.PaintDisplayMode = props.PaintDisplayMode Or RasterPaintDisplayModeFlags.ScaleToGray
      End If

      Invalidate()

      MyBase.OnDoubleClick(e)
   End Sub

   Protected Overrides Sub OnPaint(ByVal e As PaintEventArgs)
      ' Draw the image fit and center on this form
      Dim destRect As Rectangle = RasterImage.CalculatePaintModeRectangle(image.ImageWidth, image.ImageHeight, ClientRectangle, RasterPaintSizeMode.Fit, RasterPaintAlignMode.Center, RasterPaintAlignMode.Center)

      Dim hdc As IntPtr = e.Graphics.GetHdc()
      image.Paint(hdc, Rectangle.Empty, destRect, props)
      e.Graphics.ReleaseHdc(hdc)

      MyBase.OnPaint(e)
   End Sub
End Class
C#Copy Code
public void PaintDCExample() 

   PaintDCForm f = new PaintDCForm(); 
   f.ShowDialog(); 

 
class PaintDCForm : Form 

   RasterImage image; 
   RasterPaintProperties props; 
 
   public PaintDCForm() 
   { 
      // Load the image 
      RasterCodecs.Startup(); 
      RasterCodecs codecs = new RasterCodecs(); 
 
      string srcFileName = LeadtoolsExamples.Common.ImagesPath.Path + "OCR1.TIF"; 
      image = codecs.Load(srcFileName); 
 
      Text = "Normal - doubleclick to change."; 
      props = RasterPaintProperties.Default; 
      props.UsePaintPalette = true; 
   } 
 
   protected override void Dispose(bool disposing) 
   { 
      // Clean up 
      if(disposing) 
      { 
         image.Dispose(); 
         RasterCodecs.Shutdown(); 
      } 
 
      base.Dispose(disposing); 
   } 
 
   protected override void OnDoubleClick(EventArgs e) 
   { 
      if((props.PaintDisplayMode & RasterPaintDisplayModeFlags.ScaleToGray) == RasterPaintDisplayModeFlags.ScaleToGray) 
      { 
         Text = "Normal - doubleclick to change."; 
         props.PaintDisplayMode &= ~RasterPaintDisplayModeFlags.ScaleToGray; 
      } 
      else 
      { 
         Text = "ScaleToGray - doubleclick to change."; 
         props.PaintDisplayMode |= RasterPaintDisplayModeFlags.ScaleToGray; 
      } 
 
      Invalidate(); 
 
      base.OnDoubleClick(e); 
   } 
 
   protected override void OnPaint(PaintEventArgs e) 
   { 
      // Draw the image fit and center on this form 
      Rectangle destRect = RasterImage.CalculatePaintModeRectangle( 
         image.ImageWidth, 
         image.ImageHeight, 
         ClientRectangle, 
         RasterPaintSizeMode.Fit, 
         RasterPaintAlignMode.Center, 
         RasterPaintAlignMode.Center); 
 
      IntPtr hdc = e.Graphics.GetHdc(); 
      image.Paint(hdc, Rectangle.Empty, destRect, props); 
      e.Graphics.ReleaseHdc(hdc); 
 
      base.OnPaint(e); 
   } 
}

Remarks

If the destination device context handle has fewer colors than the image, this method dithers the output to that display surface without affecting the actual image data.

This method lets you specify a source rectangle (with coordinates relative to the image) and a destination rectangle (with coordinates relative to the destination device context). Scaling of the displayed image depends on the relationship between these two rectangles, as shown in the following illustration:

Note: These illustrations are for an image with a RasterViewPerspective.TopLeft view perspective. For an explanation of image coordinates and view perspectives, refer to Accounting for View Perspective. If the image is not in RasterViewPerspective.TopLeft view perspective, refer to Changing Image Coordinates.

In addition, you can specify a clipping area within either rectangle to limit the area to be painted. For the destination rectangle, a clipping area is commonly specified to repaint part of the image that was temporarily covered up. For a source rectangle, you can use a clipping area to update the display when only part of the image in the source rectangle has changed.

The following illustration shows how specifying a source clipping area affects the display. Text has been added to the source image (using the image as a display surface), and the source clipping area specifies the area to be repainted.

You can specify the various rectangles in any way that meets your needs. Coordinates can have negative values and they can extend beyond the bounds of the image or destination device context. In fact, it is common for the display rectangle to be bigger than the destination device context dimension, where scroll bars are used to see different parts of the image.

In simple cases, you can use this method as follows:

For more information, refer to Changing Image Coordinates.

For more information, refer to Handling Palette Changes.

For more information, refer to Flags for the PaintDisplayMode Property.

For more information, refer to The RasterPaintEngine Property and 16bpp Grayscale Images.

Requirements

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

See Also