i am testing out aspose.cad and have created a dwf and pdf from a dwg but when i try to open the dwf in Autodesk Design Review or the PDF in adobe, both say the file is corrupted? I just added the aspose.cad dll via nuget and used the below code. Do i need to do something else?
Dim outputdirectory As String = "C:\Users\ConnorFerguson\Desktop\PDF\"
Dim inputFile As String = "C:\Users\ConnorFerguson\Desktop\Drawing1.dwg"
Using cadFile As CadImage = Image.Load(inputFile)
cadFile.Save(outputdirectory & "Acad.dwf")
End Using