Convert image to CAD file (DWG or DXF)

462 Views Asked by At

I have a .NET C# program that needs to convert an image (be it BMP, JPEG, PNG) into an AutoCAD file (DWG or DXF). I've tried several ways mentioned here in other forums, but without success. I tried Aspose but there they only import DWG and don't convert to DWG.

Could anyone help me with some approach to this conversion or an API for .NET ?

I tried to convert using Aspose's API, with this link; I tried the exact same code but it doesn't seem to work because the generated DXF is empty.

The most promising approach for my .NET C# program seems to be via Aspose, but as I mentioned, I was unsuccessful.

1

There are 1 best solutions below

0
On

You can try something like this with Aspose.CAD library:

using (Image cadImage = Image.Load("input.png"))
{
    cadImage.Save("output.dxf", new DxfOptions());
}

Disclosure: I work as Aspose.CAD developer at Aspose.