we're trying to export a cdr to png, preserving transparency. Here is the code we're using to do the export: var po = new VGCore.StructPaletteOptions(); var eo = new VGCore.StructExportOptions(); eo.Transparent = true; cdr.ActiveDocument.Export(resultPath, VGCore.cdrFilter.cdrPNG, VGCore.cdrExportRange.cdrCurrentPage, eo); cdr.ActiveDocument.Close(); What needs changed in order to export to png, preserving transparency?
↧