Browse our Products

If so you can download any of the below versions for testing. The product will function as normal except for an evaluation limitation. At the time of purchase we provide a license file via email that will allow the product to work in its full capacity. If you would also like an evaluation license to test without any restrictions for 30 days, please follow the directions provided here.

 

Aspose.CAD for .NET version 24.1 (Dlls only)

Download  Support Forum 

File Details

  • Downloads:
  • 1
  • File Size:
  • 83.07MB
  • Date Added:
  • 12/2/2024

Description

This ZIP file contains only the Aspose.CAD for .NET assemblies v24.1. The assemblies are the same as in the MSI installer of the product of the same version. Download this if you want to use Aspose.CAD for .NET without the MSI installer.

File Details

Aspose.CAD for .NET 24.1 enables developers to streamline CAD file processing workflows. By downloading the DLLs-only package, developers can incorporate enhanced functionality to manipulate DWG, DWF, GLTF, and other popular CAD formats, into their C# apps, on a platform of their choice.

Key Highlights

  • Optimized DWG/DWF Processing: This API version delivers optimized accuracy and efficiency for DWG to PDF export and DWF file handling.
  • Enhanced Image Handling: Aspose.CAD for .NET 24.1 addresses problems with image saving and corruption, along with multileader value updates.
  • Supercharged GLTF Support: The new GltfImage class added in this release allows dedicated GLTF format management and zip output wrapping.
  • Upgraded Framework: We shifted to the .NET Framework 4.8 with this release for broader compatibility and potential performance gains.
  • Bug Fixes: Various bugs related to DWG loading, file validation, entity removal, and specific format conversions have also been resolved.

Add Blind Watermarks

Developers can now inject blind watermarks into their CAD files using the C# CAD API. The following code example illustrates the addition of blind watermarks to DXF files.


string inputFileName = "Tyrannosaurus.dxf";
string embeddedFileName = "Tyrannosaurus_embedded.dxf";

// Watermark data
string watermarkText = "草长莺飞";

// Embed
var inputImage = Image.Load(inputFileName);
bool embedSuccess = inputImage.WatermarkGuardService.EmbedText(watermarkText);
inputImage.Save(embeddedFileName, new DxfOptions());

// Validate
var embeddedImage = Image.Load(embeddedFileName);
bool validateSuccess = embeddedImage.WatermarkGuardService.ValidateText(watermarkText);
10:57
string inputFileName = "Tyrannosaurus.dxf";
string watermarkFileName = "Clock-Icon.png";
string embeddedFileName = "Tyrannosaurus_embedded.dxf";

// Watermark data
var watermarkStream = new MemoryStream(File.ReadAllBytes(watermarkFileName));

// Embed
var inputImage = Image.Load(inputFileName);
bool embedSuccess = inputImage.WatermarkGuardService.EmbedImage(watermarkStream);
inputImage.Save(embeddedFileName, new DxfOptions());

// Validate
var embeddedImage = Image.Load(embeddedFileName);
bool validateSuccess = embeddedImage.WatermarkGuardService.ValidateImage(watermarkStream);

Source*

You can view the list of all new features, enhancements, and bug fixes introduced in this release by visiting Aspose.CAD for .NET 24.1 Release Notes.

 English