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 24.1

Download  Support Forum 

File Details

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

Description

Contains MSI installer for full product installation of Aspose.CAD for .NET v24.1.

File Details

Aspose.CAD for .NET 24.1 allows developers to use a set of upgraded tools to streamline CAD workflows. By downloading the MSI installer, developers can incorporate enhanced functionality to manipulate DWG, DWF, GLTF, and other popular CAD formats, into their C# apps.

Key Highlights

  • Enhanced DWG/DWF Processing: This release brings improved accuracy and efficiency for DWG to PDF export and DWF file handling.
  • Streamlined GLTF Support: A new GltfImage class has now been added for dedicated GLTF format management and zip output wrapping.
  • Improved Image Handling: Aspose.CAD for .NET 24.1 addresses issues with image saving and corruption, along with multileader value updates.
  • Framework Upgrade: 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.

Support for Blind Watermarks

.NET developers can now add blind watermarks to 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