GdPicture image identifier. Specifies the image to be drawn from.
GdPicture image identifier. specifies the image to draw to.
Left pixel destination of the first point.
Top pixel destination of the first point.
Left pixel destination of the second point.
Top pixel destination of the second point.
Left pixel destination of the third point.
Left pixel destination of the third point.
A member of the Drawing2D.InterPolationMode enumeration.
Set to True to apply the Antialiasing algorithm else False.





In This Topic
GdPicture14 Namespace / GdPictureImaging Class / DrawGdPictureImageSkewing Method

DrawGdPictureImageSkewing Method (GdPictureImaging)

In This Topic
Draws a skewed GdPicture image from 3 points of co-ordinates into another GdPicture image.
Syntax
'Declaration
 
Public Function DrawGdPictureImageSkewing( _
   ByVal SrcImage As Integer, _
   ByVal DstImage As Integer, _
   ByVal DstLeft1 As Integer, _
   ByVal DstTop1 As Integer, _
   ByVal DstLeft2 As Integer, _
   ByVal DstTop2 As Integer, _
   ByVal DstLeft3 As Integer, _
   ByVal DstTop3 As Integer, _
   ByVal InterpolationMode As InterpolationMode, _
   ByVal AntiAlias As Boolean _
) As GdPictureStatus
public GdPictureStatus DrawGdPictureImageSkewing( 
   int SrcImage,
   int DstImage,
   int DstLeft1,
   int DstTop1,
   int DstLeft2,
   int DstTop2,
   int DstLeft3,
   int DstTop3,
   InterpolationMode InterpolationMode,
   bool AntiAlias
)
public function DrawGdPictureImageSkewing( 
    SrcImage: Integer;
    DstImage: Integer;
    DstLeft1: Integer;
    DstTop1: Integer;
    DstLeft2: Integer;
    DstTop2: Integer;
    DstLeft3: Integer;
    DstTop3: Integer;
    InterpolationMode: InterpolationMode;
    AntiAlias: Boolean
): GdPictureStatus; 
public function DrawGdPictureImageSkewing( 
   SrcImage : int,
   DstImage : int,
   DstLeft1 : int,
   DstTop1 : int,
   DstLeft2 : int,
   DstTop2 : int,
   DstLeft3 : int,
   DstTop3 : int,
   InterpolationMode : InterpolationMode,
   AntiAlias : boolean
) : GdPictureStatus;
public: GdPictureStatus DrawGdPictureImageSkewing( 
   int SrcImage,
   int DstImage,
   int DstLeft1,
   int DstTop1,
   int DstLeft2,
   int DstTop2,
   int DstLeft3,
   int DstTop3,
   InterpolationMode InterpolationMode,
   bool AntiAlias
) 
public:
GdPictureStatus DrawGdPictureImageSkewing( 
   int SrcImage,
   int DstImage,
   int DstLeft1,
   int DstTop1,
   int DstLeft2,
   int DstTop2,
   int DstLeft3,
   int DstTop3,
   InterpolationMode InterpolationMode,
   bool AntiAlias
) 

Parameters

SrcImage
GdPicture image identifier. Specifies the image to be drawn from.
DstImage
GdPicture image identifier. specifies the image to draw to.
DstLeft1
Left pixel destination of the first point.
DstTop1
Top pixel destination of the first point.
DstLeft2
Left pixel destination of the second point.
DstTop2
Top pixel destination of the second point.
DstLeft3
Left pixel destination of the third point.
DstTop3
Left pixel destination of the third point.
InterpolationMode
A member of the Drawing2D.InterPolationMode enumeration.
AntiAlias
Set to True to apply the Antialiasing algorithm else False.

Return Value

A member of the GdPictureStatus enumeration.
Remarks

This method requires the Image Documents component to run.

See Also