GdPicture image identifier. Specifies the image to be drawn from.
GdPicture image identifier. specifies the image to draw to.
Array of System.Drawing.Point that specifies the coordinates.





In This Topic
GdPicture14 Namespace / GdPictureImaging Class / DrawGdPictureImageClipped Method

DrawGdPictureImageClipped Method (GdPictureImaging)

In This Topic
Draws a clipped GdPicture image from several points of co-ordinates into another GdPicture image.
Syntax
'Declaration
 
Public Function DrawGdPictureImageClipped( _
   ByVal SrcImage As Integer, _
   ByVal DstImage As Integer, _
   ByVal arPoints() As Point _
) As GdPictureStatus
public GdPictureStatus DrawGdPictureImageClipped( 
   int SrcImage,
   int DstImage,
   Point[] arPoints
)
public function DrawGdPictureImageClipped( 
    SrcImage: Integer;
    DstImage: Integer;
    arPoints: Pointarray of
): GdPictureStatus; 
public function DrawGdPictureImageClipped( 
   SrcImage : int,
   DstImage : int,
   arPoints : Point[]
) : GdPictureStatus;
public: GdPictureStatus DrawGdPictureImageClipped( 
   int SrcImage,
   int DstImage,
   Point[]* arPoints
) 
public:
GdPictureStatus DrawGdPictureImageClipped( 
   int SrcImage,
   int DstImage,
   array<Point>^ arPoints
) 

Parameters

SrcImage
GdPicture image identifier. Specifies the image to be drawn from.
DstImage
GdPicture image identifier. specifies the image to draw to.
arPoints
Array of System.Drawing.Point that specifies the coordinates.

Return Value

A member of the GdPictureStatus enumeration.
Remarks

This method requires the Image Documents component to run.

See Also