How do I convert PDF pages to EMF / WMF?

Q: How do I convert PDF to EMF / WMF?
----
A: You can convert PDF pages to EMF/WMF using GDI+ rasterizer in
PDFDraw.

- As a first step create a PDFDraw class (e.g. as show in PDFDraw
sample project - http://www.pdftron.com/net/samplecode.html#PDFDraw).

- Call pdfdraw.SetRasterizerType( PDFRasterizer.Type.e_GDIPlus) to
select GDI+ as the current rasterizer.

- Call pdfdraw.DrawInRect(page, dc, ...) using meta-file device
content.

If you are developing under .NET, you can pass in the Graphics
Metafile object (for an example of how to create metafile device
context, please see http://www.codeproject.com/vcpp/gdiplus/saveasemfexiwmf.asp).

If you are developing using C/C++ you can create the metafile device
contexts as described in MSDN (using GDI -
http://msdn2.microsoft.com/en-us/library/ms534281(VS.85).aspx , or GDI
+ - http://msdn2.microsoft.com/en-us/library/ms533833(VS.85).aspx)