Dgn to dxf

I’ve got a project where users upload a DXF file and view it in my web app using ThreeJS. Now, I want to let users upload a DGN file instead, and then convert that DGN to DXF using Aspose before displaying it. Can anyone help me out or explain how this conversion process works?

@kaan20k,
Hello,
here is the basic example to convert DGN to DXF.


using (DgnImage doc = (DgnImage)Aspose.CAD.Image.Load(fileName))
{
	doc.Save(outPath, new DxfOptions());
}

Please note, that we have support only for DGN V7.