How do I get high-quality output when exporting to PDF via PDFDC?

Q: I'm using PDFNet to implement export functionality in one of our
products. Basically we would like to reuse our code we use to draw on
a Graphics (or HDC) object to export to PDF.

When I embeed a PNG with a transparent background to a page (using
PDFDC) the results is not of high quality, as if transparency was
simulated by overlaying an image mask.

Now, we are using PDFTron (and PDF in fact) precisely to take
advantage of the alpha blending support of PDF 1.4. Can you tell me
how to do this without the use of an image mask (as if I were creating
a PS instead of a PDF)?
---------------------------
A: The problem is due to GDI which does not support proper blending.
For better results you can use 'pdftron.PDF.PDFDCEx' instead of
'pdftron.PDF.PDFDC'.

'PDFDCEx' is using XPS graphics model wich properly supports
transparency (unlike GDI/EMF). The use of PDFDCEx is shown in the
second code snippet in PDFDC sample:

OK, I was able to confirm that indeed the problem is with GDI since
using ElementBuilder et al, I get perfect blending.
But is good to know that I can use PDFDCEx, since I need to export my
own vector object model and simply reusing my rendering system to do
so was way easier that converting each and every little bit to PDF
Element