up vote 1 down vote favorite
share [g+] share [fb]

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.

link|improve this question

73% accept rate
feedback

2 Answers

up vote 2 down vote accepted

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|improve this answer
Haha, thank you. I was looking for a method with "aliasing" in name... Seems I overlooked this one. – liori Sep 14 '09 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 '09 at 0:06
This just don't work work. You must use GDI+ 1.1 ConvertToEmfPlus method before. See my answer below. – Arnaud Bouchez Jan 20 '11 at 18:43
feedback

EMF file is a list of GDI commands. So it won't be anti-aliaised, even if under GDI+, you put a SmoothingMode() call before the drawing. You'll have to enumerate the GDI commands, then translate it into GDI+ commands.

Under Vista/Seven, you can use GDI+ 1.1 function named GdipConvertToEmfPlus/ConvertToEmfPlus. If you want your program to work with XP, you should write your own enumeration, then conversion to GDI+ commands. We've done this in Delphi, perhaps the source code may help you.

link|improve this answer
@MisterDownVoter please give some explanation of your -1 ! EMF files won't never be antialiaised even with SmoothingMode set to AntiAlias. You need to convert it to EMF+ format before. The Josh answer above is not correct, mine is. I only wrote it here because the previous answer was not working, and I spent a lot of time finding out a solution. – Arnaud Bouchez Jan 20 '11 at 18:42
feedback

Your Answer

 
or
required, but never shown

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