vote up 1 vote down star

Hello,

Our program needs to generate vector graphics, and we chose EMF for that. However, it seems that other programs render these images non-antialiased. I found that SVG format does have a flag to indicate that some/all objects should be antialiased.

Is there any kind of flag or command inside the EMF format to indicate that we want to have antialiasing? If so, how to generate that command using System.Drawing.Imaging.Metafile class?

Thank you.

flag

70% accept rate

1 Answer

vote up 2 vote down check

An EMF is simply a list of GDI / GDI+ commands. The easiest way to get antialiasing is to turn it on when you're creating the list of commands; for example, set Graphics.SmoothingMode to AntiAlias before drawing anything to your metafile.

link|flag
Haha, thank you. I was looking for a method with "aliasing" in name... Seems I overlooked this one. – liori Sep 14 at 19:02
Well, it seems this doesn't change much. I found that programs simply ignore this flag. But thank you for pointing this. – liori Sep 16 at 0:06

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.