how convert text to image ?

hi…

how can I convert “text” to an image file, then put it in GUI Texture

thanks…

I’m not sure you can do that in unity, but you can use paint, put the same image file to paint and add text there.

this is word to image codes.

Imports System.IO
Imports System.Drawing.Printing
Imports RasterEdge.Imaging
Imports RasterEdge.Imaging.Processing
Imports RasterEdge.Imaging.Converting.WordToImage

Dim Word As New RasterEdgeImaging()
If True Then
WordInputFile = (“C:/1.docx”)
WordPageNumber = “5”
ImageOutputFile = ImageFormat.Png
End If
Word.Save(“C:/1.docx”, 1, “C:/1.png”)