![]() |
VOOZH | about |
dotnet add package Aspose.CAD --version 26.1.0
NuGet\Install-Package Aspose.CAD -Version 26.1.0
<PackageReference Include="Aspose.CAD" Version="26.1.0" />
<PackageVersion Include="Aspose.CAD" Version="26.1.0" />Directory.Packages.props
<PackageReference Include="Aspose.CAD" />Project file
paket add Aspose.CAD --version 26.1.0
#r "nuget: Aspose.CAD, 26.1.0"
#:package Aspose.CAD@26.1.0
#addin nuget:?package=Aspose.CAD&version=26.1.0Install as a Cake Addin
#tool nuget:?package=Aspose.CAD&version=26.1.0Install as a Cake Tool
Product Page | Docs | Demos | API Reference | Examples | Blog | Search | Free Support | Temporary License
Aspose.CAD for .NET is a standalone class library to enhance ASP.NET, Web API, Desktop and other .NET and .Net Core applications to process & render CAD drawings without requiring AutoCAD or any other rendering workflow. The CAD Class Library allows high quality conversion of DWG, DWF, DWFX, DWT, DGN, STL, DXB, OBJ, CF2, IGES(IGS), IFC, PLT, COLLADA(DAE), STEP(STP), CGM, U3D, 3DS and DXF files, layouts, and layers to PDF & raster image formats.
OBJ file format.DWG or DXFSHX filesPC3) files.Please visit Aspose.CAD for .NET 26.1.0 - Release Notes for the detailed notes.
To become familiar with the most popular Aspose.CAD functionality, please have a look at our free online applications.
| Microsoft Windows | Linux | macOS |
|---|---|---|
| Windows 2012 Server (x64, x86) | Ubuntu | macOS version 10.9 (Mavericks) |
| Windows 2016 Server (x64, x86) | Fedora | and others |
| Windows 2019 Server (x64, x86) | Arch | |
| Windows XP (x64, x86) | Mageia | |
| Windows Vista (x64, x86) | and others | |
| Windows 7 (x64, x86) | ||
| Windows 10/11 (x64, x86) | ||
| and others |
You possess the ability to deploy a wide range of applications in diverse cloud environments, leveraging the flexibility and scalability offered by various cloud platforms to meet your specific needs.
| Deployment | Platforms | Description |
|---|---|---|
| Virtualization | ||
| Docker | Aspose.CAD in Docker. | |
| Docker Compose | Compose serves as a utility for specifying and executing Docker applications that consist of multiple containers. | |
| Kubernetes | Kubernetes stands as a flexible and extensible open-source platform designed to oversee containerized workloads and services. | |
| OpenShift | OpenShift Container Platform brings together Docker and Kubernetes. | |
| Serverless | ||
| Lambda | Docker image in AWS Lambda Function. | |
| Azure Function | Conversion function that converts a CAD file and saves it as an image. The application can then be built in Docker and run in Azure Function. | |
| Google Cloud | Creating a Google Cloud Function using Docker and Artifact Registry. |
The possibility of processing documents in different programming languages is provided. You can see examples of converting a drawing to JavaScript, .NET, Python and Java, or get more language-specific information from one of the links below:
Aspose.CAD can be ported to WebAssembly(wasm) and used as a module in JavaScript.
For more detailed information about the Aspose.CAD product with demonstrations of the library's capabilities for various programming languages, please visit the links below:
With Aspose.CAD you can also create applications using various web frameworks. To learn how to work with different frameworks, select the one you are interested in and follow the links below:
AutoCAD: DWG, DWT, DXF, PC3 MicroStation: DGN Other: STL, DXB, IGES, DWF, DWFX, DAE, STP, STEP, CF2, IFC, PLT, HPGL, U3D, 3DS
Fixed Layout: PDF Vector Images SVG, WMF, EMF, HTML5, CGM Raster Images: PNG, BMP, DIB, TIFF, TIF, JPEG, GIF, JPG, JPE, JIF, JFIF, PSD, WEBP, DCM, DICOM, JP2, J2K, JPF, JPM, JPG2, J2C, JPC, JPX, MJ2, DJVU
CAD: DXF, DWF, DWFX, FBX, STP, STEP Raster Images: PNG, BMP, DIB, TIFF, TIF, JPEG, GIF, PSD, JPG, JPE, JIF, JFIF, WEBP, DCM, DICOM, JP2, J2K, JPF, JPM, JPG2, J2C, JPC, JPX, MJ2 , DJVU Vector Images SVG, CGM The Advanced Visualizer: OBJ, GLB, GLTF (Write features are partially supported.)
Aspose.CAD for .NET supports .NET framework (ASP.NET applications & Windows applications) as well as .NET Core. It supports any 32-bit or 64-bit operating system where .NET or Mono framework is installed, this includes but is not limited to, Microsoft Windows desktop (XP, Vista, 7, 8, 10), Microsoft Windows Server (2003, 2008, 2012), Microsoft Azure, Linux (Ubuntu, OpenSUSE, CentOS, and others), and Mac OS X.
Are you ready to give Aspose.CAD for .NET a try? Simply execute Install-Package Aspose.CAD from Package Manager Console in Visual Studio to fetch the NuGet package. If you already have Aspose.CAD for .NET and want to upgrade the version, please execute Update-Package Aspose.CAD to get the latest version.
You can execute below code snippet to see how the API performs in your environment or check the GitHub Repository for other common usage scenarios.
CadText text = new CadText();
text.DefaultValue = "Watermark text";
text.TextHeight = 40;
text.FirstAlignment = new Cad3DPoint(300, 40);
Image img = Image.Load("Drawing.dwg");
MemoryStream ms = new MemoryStream();
var rasterizationOptions = new CadRasterizationOptions();
rasterizationOptions.PageWidth = 500;
rasterizationOptions.PageHeight = 500;
rasterizationOptions.Layouts = new string[] { "Model" };
rasterizationOptions.DrawColor = Color.Red;
var pdfOptions = new PdfOptions();
pdfOptions.VectorRasterizationOptions = rasterizationOptions;
img.Save("output.pdf", pdfOptions);
DxfImage img = new DxfImage();
CadLine line = new CadLine(new Cad3DPoint(0, 0, 0), new Cad3DPoint(100, 100, 100));
img.AddEntity(line);
CadText text = new CadText();
text.FirstAlignment = new Cad3DPoint(0, -50, 0);
text.TextHeight = 10;
text.DefaultValue = "text value";
img.AddEntity(circle);
CadCircle circle = new CadCircle(new Cad3DPoint(50, 0), 10);
img.AddEntity(circle);
var rasterizationOptions = new CadRasterizationOptions();
rasterizationOptions.PageWidth = 256;
rasterizationOptions.PageHeight = 256;
var pngOptions = new PngOptions();
pngOptions.VectorRasterizationOptions = rasterizationOptions;
img.Save(ms, pngOptions);
Home | Product Page | Docs | Demos | API Reference | Examples | Blog | Free Support | Temporary License
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 net5.0 was computed. net5.0-windows net5.0-windows was computed. net6.0 net6.0 is compatible. net6.0-android net6.0-android was computed. net6.0-ios net6.0-ios was computed. net6.0-maccatalyst net6.0-maccatalyst was computed. net6.0-macos net6.0-macos was computed. net6.0-tvos net6.0-tvos was computed. net6.0-windows net6.0-windows was computed. net7.0 net7.0 was computed. net7.0-android net7.0-android was computed. net7.0-ios net7.0-ios was computed. net7.0-maccatalyst net7.0-maccatalyst was computed. net7.0-macos net7.0-macos was computed. net7.0-tvos net7.0-tvos was computed. net7.0-windows net7.0-windows was computed. net8.0 net8.0 was computed. net8.0-android net8.0-android was computed. net8.0-browser net8.0-browser was computed. net8.0-ios net8.0-ios was computed. net8.0-maccatalyst net8.0-maccatalyst was computed. net8.0-macos net8.0-macos was computed. net8.0-tvos net8.0-tvos was computed. net8.0-windows net8.0-windows was computed. net9.0 net9.0 was computed. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 was computed. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
| .NET Core | netcoreapp2.0 netcoreapp2.0 was computed. netcoreapp2.1 netcoreapp2.1 was computed. netcoreapp2.2 netcoreapp2.2 was computed. netcoreapp3.0 netcoreapp3.0 was computed. netcoreapp3.1 netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.0 netstandard2.0 is compatible. netstandard2.1 netstandard2.1 was computed. |
| .NET Framework | net461 net461 was computed. net462 net462 was computed. net463 net463 was computed. net47 net47 was computed. net471 net471 was computed. net472 net472 was computed. net48 net48 is compatible. net481 net481 was computed. |
| MonoAndroid | monoandroid monoandroid was computed. |
| MonoMac | monomac monomac was computed. |
| MonoTouch | monotouch monotouch was computed. |
| Tizen | tizen40 tizen40 was computed. tizen60 tizen60 was computed. |
| Xamarin.iOS | xamarinios xamarinios was computed. |
| Xamarin.Mac | xamarinmac xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos xamarinwatchos was computed. |
Showing the top 1 NuGet packages that depend on Aspose.CAD:
| Package | Downloads |
|---|---|
|
Aspose.Total
Aspose.Total for .NET is the most complete package of all .NET file format APIs offered by Aspose. It empowers developers to create, edit, render, print and convert between a wide range of popular document formats within any .NET, C#, ASP.NET and VB.NET applications. |
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 26.1.0 | 25,031 | 1/12/2026 |
| 25.12.0 | 14,501 | 12/8/2025 |
| 25.11.0 | 20,827 | 11/11/2025 |
| 25.10.1 | 15,679 | 10/9/2025 |
| 25.10.0 | 14,440 | 10/6/2025 |
| 25.9.0 | 22,818 | 9/1/2025 |
| 25.8.0 | 13,292 | 8/5/2025 |
| 25.7.0 | 15,036 | 7/10/2025 |
| 25.6.0 | 27,209 | 6/12/2025 |
| 25.5.0 | 19,885 | 5/6/2025 |
| 25.4.1 | 23,077 | 4/16/2025 |
| 25.4.0 | 8,463 | 4/11/2025 |
| 25.3.0 | 28,652 | 3/12/2025 |
| 25.2.0 | 8,028 | 3/12/2025 |
| 25.1.0 | 9,136 | 3/10/2025 |
| 24.12.0 | 54,672 | 1/2/2025 |
| 24.11.0 | 30,932 | 12/1/2024 |
| 24.10.0 | 47,188 | 10/28/2024 |
| 24.9.0 | 22,535 | 9/27/2024 |
| 24.8.0 | 17,775 | 9/1/2024 |