Cannot open the file after converting dwg to dxf

sample.zip (218.3 KB)

import aspose.cad as cad

# Specify paths for input and output files.
inputDWG = "sample.dwg"
outputDXF = "sample_out.dxf"

# Load DWG file
image = cad.Image.load(inputDWG)

# Specify DXF options
options = cad.imageoptions.DxfOptions()

# Save output DXF file
image.save(outputDXF, options)

@xiuwei,
Hi.
We can confirm this issue, unfortunately. We have created CADPYTHON-13 to investigate the source of the error deeper and fix.