Graphics.DrawString

DrawString(string, Font, Brush, float, float)

Draws the specified text string at the specified location with the specified Brush and Font objects.

public void DrawString(string s, Font font, Brush brush, float x, float y)
ParameterTypeDescription
sStringString to draw.
fontFontFont that defines the text format of the string.
brushBrushBrush that determines the color and texture of the drawn text.
xSingleThe x-coordinate of the upper-left corner of the drawn text.
ySingleThe y-coordinate of the upper-left corner of the drawn text.

Exceptions

exceptioncondition
ArgumentNullExceptionbrush is null. -or- s is null.

See Also


DrawString(string, Font, Brush, PointF)

Draws the specified text string at the specified location with the specified Brush and Font objects.

public void DrawString(string s, Font font, Brush brush, PointF point)
ParameterTypeDescription
sStringString to draw.
fontFontFont that defines the text format of the string.
brushBrushBrush that determines the color and texture of the drawn text.
pointPointFPointF structure that specifies the upper-left corner of the drawn text.

Exceptions

exceptioncondition
ArgumentNullExceptionbrush is null. -or- s is null.

Examples

This example demonstrates the use of Font and SolidBrush class to draw strings on Image surface. The example creates a new Image and draw shapes using Figures and GraphicsPath

[C#]

//Creates an instance of Image
using (Aspose.PSD.Image image = new Aspose.PSD.FileFormats.Psd.PsdImage(500, 500))
{
    //Creates and initialize an instance of Graphics class
    Aspose.PSD.Graphics graphics = new Aspose.PSD.Graphics(image);

    //Clears Graphics surface
    graphics.Clear(Color.Wheat);

    //Creates an instance of Font
    Aspose.PSD.Font font = new Aspose.PSD.Font("Times New Roman", 16);

    //Create an instance of SolidBrush having Red Color
    Aspose.PSD.Brushes.SolidBrush brush = new Aspose.PSD.Brushes.SolidBrush(Color.Red);

    //Draw a String
    graphics.DrawString("Created by Aspose.PSD for .Net", font, brush, new PointF(100, 100));

    // create export options.
    Aspose.PSD.ImageOptions.GifOptions options = new Aspose.PSD.ImageOptions.GifOptions();

    // save all changes
    image.Save("C:\\temp\\output.gif", options);
}

See Also


DrawString(string, Font, Brush, float, float, StringFormat)

Draws the specified text string at the specified location with the specified Brush and Font objects using the formatting attributes of the specified StringFormat.

public void DrawString(string s, Font font, Brush brush, float x, float y, StringFormat format)
ParameterTypeDescription
sStringString to draw.
fontFontFont that defines the text format of the string.
brushBrushBrush that determines the color and texture of the drawn text.
xSingleThe x-coordinate of the upper-left corner of the drawn text.
ySingleThe y-coordinate of the upper-left corner of the drawn text.
formatStringFormatStringFormat that specifies formatting attributes, such as line spacing and alignment, that are applied to the drawn text.

Exceptions

exceptioncondition
ArgumentNullExceptionbrush is null. -or- s is null.

See Also


DrawString(string, Font, Brush, PointF, StringFormat)

Draws the specified text string at the specified location with the specified Brush and Font objects using the formatting attributes of the specified StringFormat.

public void DrawString(string s, Font font, Brush brush, PointF point, StringFormat format)
ParameterTypeDescription
sStringString to draw.
fontFontFont that defines the text format of the string.
brushBrushBrush that determines the color and texture of the drawn text.
pointPointFPointF structure that specifies the upper-left corner of the drawn text.
formatStringFormatStringFormat that specifies formatting attributes, such as line spacing and alignment, that are applied to the drawn text.

Exceptions

exceptioncondition
ArgumentNullExceptionbrush is null. -or- s is null.

See Also


DrawString(string, Font, Brush, RectangleF)

Draws the specified text string in the specified rectangle with the specified Brush and Font objects.

public void DrawString(string s, Font font, Brush brush, RectangleF layoutRectangle)
ParameterTypeDescription
sStringString to draw.
fontFontFont that defines the text format of the string.
brushBrushBrush that determines the color and texture of the drawn text.
layoutRectangleRectangleFRectangleF structure that specifies the location of the drawn text.

Exceptions

exceptioncondition
ArgumentNullExceptionbrush is null. -or- s is null.

See Also


DrawString(string, Font, Brush, RectangleF, StringFormat)

Draws the specified text string in the specified rectangle with the specified Brush and Font objects using the formatting attributes of the specified StringFormat.

public void DrawString(string s, Font font, Brush brush, RectangleF layoutRectangle, 
    StringFormat format)
ParameterTypeDescription
sStringString to draw.
fontFontFont that defines the text format of the string.
brushBrushBrush that determines the color and texture of the drawn text.
layoutRectangleRectangleFRectangleF structure that specifies the location of the drawn text.
formatStringFormatStringFormat that specifies formatting attributes, such as line spacing and alignment, that are applied to the drawn text.

Exceptions

exceptioncondition
ArgumentNullExceptionbrush is null. -or- s is null. -or- brush is null.

See Also