How to save a DWG file into different format?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I am using RealDWG and try to output the DWG drawing into different format, including DWG and DXF format. However, in the library, it seems there are only the following 6 functions:
acdbSaveAsR14(AcDbDatabase* pDb, const ACHAR* filename),
acdbSaveAs2000(AcDbDatabase* pDb, const ACHAR* fileName),
acdbSaveAs2004(AcDbDatabase* pDb, const ACHAR* fileName),
acdbDxfOutAsR12(AcDbDatabase* pDb, const ACHAR* fileName, const int precision = 16),
acdbDxfOutAs2000(AcDbDatabase* pDb, const ACHAR* fileName, const int precision = 16),
acdbDxfOutAs2004(AcDbDatabase* pDb, const ACHAR* fileName, const int precision = 16),
for outputting as DWG R14,DWG 2000, DWG 2004, DXF R12, DXF 2000, DXF 2004 accordingly.
Are there any other ways that can let me output as other format such as DWG 2007, 2010, 2013, etc.
Thanks