Drawing EPS files (illustrator) on WinForms

  • Thread starter Thread starter Ron M. Newman
  • Start date Start date
R

Ron M. Newman

Hi,

I have a requirement to be able to draw EPS files from Adobe Illustrator on
WinForms using C#. Any idea how I achieve this? is there an SDK or a
commercial component that can do this?

Thanks

--Ron
 
Hello Ron,
I have a requirement to be able to draw EPS files from Adobe Illustrator
on WinForms using C#. Any idea how I achieve this? is there an SDK or a
commercial component that can do this?

EPS stands for Encapsulated PostScript, and there's a GNU tool called
GhostScript that can work with it very well. On CodeProject there's an
article that describes how to use the GhostScript DLL, and actually how to
interface it with GDI+ - the major downside is that it's for C++. I would
use this as a starting point however, as I'm sure that the API calls won't
be too hard to translate.

http://www.codeproject.com/vcpp/gdiplus/ghostwrapper.asp



Oliver Sturm
 
Back
Top