GdPicture image identifier.
Text to draw.
Specifies the x-coordinate of the upper-left corner of the rectangle that bounds the.
Specifies the y-coordinate of the upper-left corner of the rectangle that bounds the.
The font size in units specified by the FontSetUnit() method.
A member of the FontStyle enumeration.
Color of the text. A suitable color value can be obtained by using the ARGBI() method.
Color of the background. A suitable color value can be obtained by using the ARGBI() method.
The name of the font. IE: "Arial".
Set to True to apply the Antialiasing algorithm else False.
Example





In This Topic
GdPicture14 Namespace / GdPictureImaging Class / DrawTextBackColor Method / DrawTextBackColor(Int32,String,Int32,Int32,Single,FontStyle,Int32,Int32,String,Boolean) Method

DrawTextBackColor(Int32,String,Int32,Int32,Single,FontStyle,Int32,Int32,String,Boolean) Method

In This Topic
Draws a text with background color on a GdPicture image. The drawing color is specified with an integer value.
Syntax
'Declaration
 
Public Overloads Function DrawTextBackColor( _
   ByVal ImageID As Integer, _
   ByVal Text As String, _
   ByVal DstLeft As Integer, _
   ByVal DstTop As Integer, _
   ByVal FontSize As Single, _
   ByVal FontStyle As FontStyle, _
   ByVal TextColor As Integer, _
   ByVal BackColor As Integer, _
   ByVal FontName As String, _
   ByVal AntiAlias As Boolean _
) As GdPictureStatus
public GdPictureStatus DrawTextBackColor( 
   int ImageID,
   string Text,
   int DstLeft,
   int DstTop,
   float FontSize,
   FontStyle FontStyle,
   int TextColor,
   int BackColor,
   string FontName,
   bool AntiAlias
)
public function DrawTextBackColor( 
    ImageID: Integer;
    Text: String;
    DstLeft: Integer;
    DstTop: Integer;
    FontSize: Single;
    FontStyle: FontStyle;
    TextColor: Integer;
    BackColor: Integer;
    FontName: String;
    AntiAlias: Boolean
): GdPictureStatus; 
public function DrawTextBackColor( 
   ImageID : int,
   Text : String,
   DstLeft : int,
   DstTop : int,
   FontSize : float,
   FontStyle : FontStyle,
   TextColor : int,
   BackColor : int,
   FontName : String,
   AntiAlias : boolean
) : GdPictureStatus;
public: GdPictureStatus DrawTextBackColor( 
   int ImageID,
   string* Text,
   int DstLeft,
   int DstTop,
   float FontSize,
   FontStyle FontStyle,
   int TextColor,
   int BackColor,
   string* FontName,
   bool AntiAlias
) 
public:
GdPictureStatus DrawTextBackColor( 
   int ImageID,
   String^ Text,
   int DstLeft,
   int DstTop,
   float FontSize,
   FontStyle FontStyle,
   int TextColor,
   int BackColor,
   String^ FontName,
   bool AntiAlias
) 

Parameters

ImageID
GdPicture image identifier.
Text
Text to draw.
DstLeft
Specifies the x-coordinate of the upper-left corner of the rectangle that bounds the.
DstTop
Specifies the y-coordinate of the upper-left corner of the rectangle that bounds the.
FontSize
The font size in units specified by the FontSetUnit() method.
FontStyle
A member of the FontStyle enumeration.
TextColor
Color of the text. A suitable color value can be obtained by using the ARGBI() method.
BackColor
Color of the background. A suitable color value can be obtained by using the ARGBI() method.
FontName
The name of the font. IE: "Arial".
AntiAlias
Set to True to apply the Antialiasing algorithm else False.

Return Value

A member of the GdPictureStatus enumeration.
Remarks
To draw watermark text use an ARGB value with alpha component < 255.

This method requires the Image Documents component to run.

Example
Drawing white text "GdPicture.Net" with a red background on a jpeg image.
using (GdPictureImaging gdpictureImaging = new GdPictureImaging())
{
    int imageID = gdpictureImaging.CreateGdPictureImageFromFile("input.jpg");
 
    // Draw the text in the top left corner of the image.
    gdpictureImaging.DrawTextBackColor(imageID, "GdPicture.Net", 5, 5, 24, GdPicture14.FontStyle.FontStyleRegular, gdpictureImaging.ARGBI(255, 255, 255, 255), gdpictureImaging.ARGBI(255, 255, 0, 0), "Arial", true);
    gdpictureImaging.SaveAsJPEG(imageID, "output.jpg");
    gdpictureImaging.ReleaseGdPictureImage(imageID);
}
See Also