AutoCAD File Processing .NET Cloud REST API
Product Page | Docs | Swagger UI | Examples | Blog | Search | Free Support | Free Trial
This Cloud SDK helps you perform AutoCAD drawing conversion, processing & manipulation from within your C#, ASP.NET, & other .NET cloud apps without AutoCAD.
CAD Processing Features
- Export CAD drawings to other file formats.
- Get image properties of a CAD drawing.
- Change the scale of an AutoCAD sketch.
- Flip and rotate a CAD image.
- Upload or download CAD drawings to the cloud storage.
- Copy, move, delete CAD files from the cloud storage.
DWG, DWF, DXF
Save CAD As
Fixed Layout: PDF (as a vector and as a raster)
Images: BMP, PNG, JPG, JPEG, JPEG2000, TIF, TIFF, PSD, GIF, WMF
Support for DXF / DWG / DGN (3D Solids)
- Conic
- Sphere
- Torus
- Cylinder
- Box
- Wedge
Support for DXF / DWG
- Wired models
- Basic view cube positions
- 3D Faces
Support for DXF / DGN
Aspose.CAD Cloud’s platform independent document manipulation API is a true REST API that can be used from any platform. You can use it with any language or platform that supports REST, be it the web, desktop, mobile, or the cloud. The API integrates with other cloud services to provide you the flexibility you require for processing documents. It is suitable for most types of businesses, documents, or content.
Get Started
You do not need to install anything to get started with Aspose.CAD Cloud SDK for .NET. Just create an account at Aspose for Cloud and get your application information.
Simply execute Install-Package Aspose.CAD-Cloud
from the Package Manager Console in Visual Studio to fetch & reference Aspose.CAD assembly in your project. If you already have Aspose.CAD Cloud SDK for .NET and want to upgrade it, please execute Update-Package Aspose.CAD-Cloud
to get the latest version.
Please check the GitHub Repository for common usage scenarios.
// for complete examples, please visit https://github.com/aspose-cad-cloud/aspose-cad-cloud-dotnet
// Get Client Id and Client Secret from https://dashboard.aspose.cloud
string MyClientId = "My-Client-Id";
string MyClientSecret = "My-Client-Secret";
// Create instance of the API
var apiInstance = new CadApi(MyClientSecret, MyClientId);
// Create request
var request = new GetDrawingSaveAsRequest("sample-file.dwg", "png", "CADFiles", "CADFiles/output.png", "My Storage Name");
// Convert DWG to PNG
var response = apiInstance.GetDrawingSaveAs(request);
Product Page | Docs | Swagger UI | Examples | Blog | Search | Free Support | Free Trial