WriteText(String,Int32,Int32) Method

Example 

Text that will be written on image
Left-most position of the text
Top-most position of the text
Write text to image using the font assigned using SetFont Method.

Syntax

'Declaration
 
<ObsoleteAttribute("This method is deprecated. Use DrawText(TextField textField)")>
Public Overloads Sub WriteText( _
   ByVal text As String, _
   ByVal x As Integer, _
   ByVal y As Integer _
) 
[Obsolete("This method is deprecated. Use DrawText(TextField textField)")]
public void WriteText( 
   string text,
   int x,
   int y
)

Parameters

text
Text that will be written on image
x
Left-most position of the text
y
Top-most position of the text

Example

// Write Hello World on image with semi transparent white
var image = new KalikoImage(@"C:\Img\MyImage.jpg");
 
// Load the font, relative path from the application path
image.SetFont("84_rock.ttf", 120, FontStyle.Regular);
image.Color = Color.FromArgb(64, Color.White);
image.WriteText("Hello World!", 0, 0);

Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

This documentation was created using Document! X from Innovasys