Browse our Products Toggle navigation
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.
If you experience errors, when you try to download a file, make sure your network policies (enforced by your company or ISP) allow downloading ZIP and/or MSI files.
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.
GltfImage
.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.