GdPicture image identifier.
GdPicture image identifier. Source image used for the texture.
Specifies the x-coordinate of the center of the circle.
Specifies the y-coordinate of the center of the circle.
Diameter of the circle in pixel.
Set to True to apply the Antialiasing algorithm else False.





In This Topic
GdPicture14 Namespace / GdPictureImaging Class / DrawFilledCircleTextureFromGdPictureImage Method

DrawFilledCircleTextureFromGdPictureImage Method (GdPictureImaging)

In This Topic
Draws a filled circle on a GdPicture image using a texture from a GdPicture image.
Syntax
'Declaration
 
Public Function DrawFilledCircleTextureFromGdPictureImage( _
   ByVal ImageID As Integer, _
   ByVal ImageTexture As Integer, _
   ByVal DstLeft As Integer, _
   ByVal DstTop As Integer, _
   ByVal Diameter As Integer, _
   ByVal AntiAlias As Boolean _
) As GdPictureStatus
public GdPictureStatus DrawFilledCircleTextureFromGdPictureImage( 
   int ImageID,
   int ImageTexture,
   int DstLeft,
   int DstTop,
   int Diameter,
   bool AntiAlias
)
public function DrawFilledCircleTextureFromGdPictureImage( 
    ImageID: Integer;
    ImageTexture: Integer;
    DstLeft: Integer;
    DstTop: Integer;
    Diameter: Integer;
    AntiAlias: Boolean
): GdPictureStatus; 
public function DrawFilledCircleTextureFromGdPictureImage( 
   ImageID : int,
   ImageTexture : int,
   DstLeft : int,
   DstTop : int,
   Diameter : int,
   AntiAlias : boolean
) : GdPictureStatus;
public: GdPictureStatus DrawFilledCircleTextureFromGdPictureImage( 
   int ImageID,
   int ImageTexture,
   int DstLeft,
   int DstTop,
   int Diameter,
   bool AntiAlias
) 
public:
GdPictureStatus DrawFilledCircleTextureFromGdPictureImage( 
   int ImageID,
   int ImageTexture,
   int DstLeft,
   int DstTop,
   int Diameter,
   bool AntiAlias
) 

Parameters

ImageID
GdPicture image identifier.
ImageTexture
GdPicture image identifier. Source image used for the texture.
DstLeft
Specifies the x-coordinate of the center of the circle.
DstTop
Specifies the y-coordinate of the center of the circle.
Diameter
Diameter of the circle in pixel.
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