PDA

Click to See Complete Forum and Search --> : [2.0] Anyway to save /convert to EPS


Crash893
Oct 27th, 2006, 01:58 AM
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?

wossname
Oct 27th, 2006, 02:35 PM
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()

Crash893
Oct 27th, 2006, 10:54 PM
thanks