I see that the BarCode-toolkit now save real EMF-files, but the artwork-dimensions does not seem to be correct.
If I save the QR-barcode using
.Save("c:\temp\test.emf",ImageFormat.EMF)
the resulting file (png I know), will have dimensions 574x574
If I save the same barcode
using
.SaveAsEMF("c:\temp\test2.emf")
the resulting file (real emf-file), will have the dimensions 1626x1629, where the actual QR-code is placed in the top left corner of the image with real dimensions 431x431. In other words, there is a lot of space around the QR!
Another question is that I'm missing the SaveAsEMF that save to a stream and not just to file.