Is it possible to import EPS files with iTextSharp?
I have to import an eps file :
FileStream fs = new FileStream("foo.eps", FileMode.Open);开发者_运维问答
iTextSharp.text.Image img = Image.GetInstance(fs);
Is this possible?
The last time I checked you couldn't use an EPS with iTextSharp but you can use a vector-based WMF file.
精彩评论