Draw Text in Rect VI

Owning Palette: Picture Functions VIs

Requires: Base Development System

Draws a string into a picture.

If the string is larger than the rectangle you specify, the VI clips, or crops, the string to the area of the rectangle.

 Add to the block diagram  Find on the palette
[user-specified font] specifies the specific font characteristics for the text to draw. The VI ignores this input unless desired font is User-specified Font.
Font Name specifies the font to use for the text. If you misspell the font name or specify a font that is not installed on the computer, the operating system selects a font.
Size specifies the size of the font in points.
Strikeout? specifies if the text appears in strikeout. If Strikeout? is TRUE, the text appears in strikeout.
Italic? specifies if the text appears in italics. If Italic? is TRUE, the text appears in italics.
Underline? specifies if the text is underlined. If Underline? is TRUE, the text appears underlined.
Outline? specifies if the text is outlined. If Outline? is TRUE, the text appears outlined.
Shadow? specifies if the text has a shadow. If Shadow? is TRUE, the text appears in shadow.
Bold? specifies if the text is bold. If Bold? is TRUE, the text appears bold.
desired font specifies the text font.

0User-specified Font
1Application Font (default)
2System Font
3Dialog Font
picture is the picture to which you want to add the text string. The default is an empty picture.
text orientation sets the orientation of the text to draw.

0None (default)—Text appears normal.
1Stacked—Text appears stacked.
2Clockwise—Text appears rotated 90° clockwise, which results in vertical text that reads downward.
3Counterclockwise—Text appears rotated 90° counterclockwise, which results in vertical text that reads upward.
rect contains the upper-left and lower-right coordinates that describe a rectangle bounding the text. The VI clips text to the coordinates of this rectangle. Horizontal coordinates increase to the right, and vertical coordinates increase to the bottom.
left is the horizontal coordinate of the left edge of the rectangle.
top is the vertical coordinate of the top edge of the rectangle.
right is the horizontal coordinate of the right edge of the rectangle.
bottom is the vertical coordinate of the bottom edge of the rectangle.
text is the string to draw in the picture.
text color is the color of the text. The default is black. You can wire a color box constant to this input.
BG color is the color of the background of the text. The default is transparent.

You can wire a color box constant to this input.
new picture is the picture that contains the new image. You can wire this output to any other picture input to add more drawing instructions to the picture. You also can wire this output to the Picture to Pixmap VI to obtain an image data cluster. You then can use the Graphics Formats VIs to save the image data to a file. You can wire this output to the Concatenate Strings function to concatenate the output from multiple Picture Functions VIs so that they draw on a single picture control.