'Declaration
Public Function DrawGdPictureImageOPRect( _ ByVal SrcImage As Integer, _ ByVal DstImage As Integer, _ ByVal DstLeft As Integer, _ ByVal DstTop As Integer, _ ByVal DstWidth As Integer, _ ByVal DstHeight As Integer, _ ByVal SrcLeft As Integer, _ ByVal SrcTop As Integer, _ ByVal SrcWidth As Integer, _ ByVal SrcHeight As Integer, _ ByVal Op As Operators, _ ByVal InterpolationMode As GdPictureInterpolationMode _ ) As GdPictureStatus
public GdPictureStatus DrawGdPictureImageOPRect( int SrcImage, int DstImage, int DstLeft, int DstTop, int DstWidth, int DstHeight, int SrcLeft, int SrcTop, int SrcWidth, int SrcHeight, Operators Op, GdPictureInterpolationMode InterpolationMode )
public function DrawGdPictureImageOPRect( SrcImage: Integer; DstImage: Integer; DstLeft: Integer; DstTop: Integer; DstWidth: Integer; DstHeight: Integer; SrcLeft: Integer; SrcTop: Integer; SrcWidth: Integer; SrcHeight: Integer; Op: Operators; InterpolationMode: GdPictureInterpolationMode ): GdPictureStatus;
public function DrawGdPictureImageOPRect( SrcImage : int, DstImage : int, DstLeft : int, DstTop : int, DstWidth : int, DstHeight : int, SrcLeft : int, SrcTop : int, SrcWidth : int, SrcHeight : int, Op : Operators, InterpolationMode : GdPictureInterpolationMode ) : GdPictureStatus;
public: GdPictureStatus DrawGdPictureImageOPRect( int SrcImage, int DstImage, int DstLeft, int DstTop, int DstWidth, int DstHeight, int SrcLeft, int SrcTop, int SrcWidth, int SrcHeight, Operators Op, GdPictureInterpolationMode InterpolationMode )
public: GdPictureStatus DrawGdPictureImageOPRect( int SrcImage, int DstImage, int DstLeft, int DstTop, int DstWidth, int DstHeight, int SrcLeft, int SrcTop, int SrcWidth, int SrcHeight, Operators Op, GdPictureInterpolationMode InterpolationMode )
Parameters
- SrcImage
- GdPicture image identifier. Specifies the image to be drawn from.
- DstImage
- GdPicture image identifier. specifies the image to draw to.
- DstLeft
- Specifies the x-coordinate in pixels of the upper-left corner of the destination rectangle at which to draw the image.
- DstTop
- Specifies the y-coordinate in pixels of the upper-left corner of the destination rectangle at which to draw the image.
- DstWidth
- Specifies the width, in pixels, of the destination rectangle at which to draw the image.
- DstHeight
- Specifies the height, in pixels, of the destination rectangle at which to draw the image.
- SrcLeft
- Specifies the x-coordinate in pixels of the upper-left corner of the portion of the source image to be drawn.
- SrcTop
- Specifies the y-coordinate in pixels of the upper-left corner of the portion of the source image to be drawn.
- SrcWidth
- Specifies the width, in pixels, of the portion of the source image to be drawn.
- SrcHeight
- Specifies the height, in pixels, of the portion of the source image to be drawn.
- Op
- A member of the Operators enumeration.
- InterpolationMode
- A member of the Drawing2D.InterPolationMode enumeration.
Return Value
A member of the GdPictureStatus enumeration.