Create an image from a text stream.
Syntax

[C#]

static XImage FromTextStream(Stream inStream, DrawOptions inOptions);

[Visual Basic]

Shared Function FromTextStream(inStream As Stream, inOptions As DrawOptions) As XImage
Params
Name Description
inStream The binary data of the image to be imported, as a stream.
inOptions The options for drawing the text onto the image.
Notes

Use this method when you want to render a stream containing text and import it as an XImage. See FromTextFile for further details.

See Also

FromTextFile

FromTextData

Example

None.