All,
I asked this some time ago in the vb forums but since im doing c# now (i know it doesnt matter as long as its .net)
is there any way to save text as a image? and more importantly is there a way to save that image as a .eps file?
Printable View
All,
I asked this some time ago in the vb forums but since im doing c# now (i know it doesnt matter as long as its .net)
is there any way to save text as a image? and more importantly is there a way to save that image as a .eps file?
As far as i'm aware EPS is not supported directly by the framework. But if you can get as far as saving to a bmp image then i'm sure you can find a way to convert it to an EPS using some 3rd party code. In the meantime here's a hint about saving a bmp...
Draw the text onto an image object and then save the image.
See:
Graphics.FromImage(),
Graphics.DrawString()
and
Image.Save()
thanks