OverlayBitmap.DrawText Method
このメソッドはライブ画像上にテキストを描画します。
構文
[VB.NET]
Public Sub DrawText( clr As System.Drawing.Color, XStart As Integer , YStart As Integer , text As String )
[C#]
public void DrawText( System.Drawing.Color clr, int XStart, int YStart, String text );
パラメータ | 説 明 |
---|---|
color, clr | テキストに使用する色を指定します。 |
tcolumn, XStart | 線を引き始めるライブ画像上の点のX座標をピクセルで指定します。 |
startrow, YStart | 線を引き始めるライブ画像上の点のY座標をピクセルで指定します。 |
text | 書き込むテキストの内容を指定します。 |
制限
備考
DrawTextメソッドはライブ画像上にテキストを書き込みます。その際は設定されているフォント FontBackColorとセッティングFontTransparentが使用されます。
サンプル
この例ではテキストをライブ画像上の座標(10, 10)から書き込む方法を紹介しています。
[VB.NET]
Dim ob As OverlayBitmap
ob = IcImagingControl1.OverlayBitmap
' テキストを赤色で書き込む
ob.DrawText(Color.FromArgb(255, 0, 0), 10, 10, "IC Imaging Control")
[C#]
OverlayBitmap ob = ICImagingControl1.OverlayBitmap;
// テキストを赤色で書き込む
ob.DrawText(Color.FromArgb(255, 0, 0), 10, 10, "IC Imaging Control");
関連項目
OverlayBitmap.Fontクラスライブラリリファレンス>クラス>OverlayBitmap>OverlayBitmap.Font Property, OverlayBitmap.FontBackColorクラスライブラリリファレンス>クラス>OverlayBitmap>OverlayBitmap.FontBackColor Property, OverlayBitmap.FontTransparentクラスライブラリリファレンス>クラス>OverlayBitmap>OverlayBitmap.FontTransparent Property, ICImagingControl.LiveStartクラスライブラリリファレンス>クラス>ICImagingControl>ICImagingControl.LiveStart Method, ICImagingControl.LiveStopクラスライブラリリファレンス>クラス>ICImagingControl>ICImagingControl.LiveStop Method, ICImagingControl.OverlayBitmapクラスライブラリリファレンス>クラス>ICImagingControl>ICImagingControl.OverlayBitmap Property