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.Words for .NET 24.3 (DLLs only)

Download  Support Forum 

File Details

  • Downloads:
  • 1
  • File Size:
  • 91.58MB
  • Date Added:
  • 5/3/2024

Description

This ZIP file contains the Aspose.Words for .NET and .NET Standard 2.0 assemblies. The assemblies are the same as in the MSI installer of the product of the same version.

File Details

Upgraded TIFF Image Processing

Improved functionality and performance for reading and writing TIFF images, including support for JPEG and old JPEG compression, are made available in this release of the Aspose.Words for .NET API. This upgrade is available for .NET Standard, .NET 6 and above.

The following C# coding example demonstrates how to use various TiffCompression types:

// For complete examples and data files, please go to https://github.com/aspose-words/Aspose.Words-for-.NET.git.
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);

builder.InsertImage(ImageDir + "Tagged Image File Format.tiff");

// Create an "ImageSaveOptions" object which we can pass to the document's "Save" method
// to modify the way in which that method renders the document into an image.
ImageSaveOptions options = new ImageSaveOptions(SaveFormat.Tiff);
// Set the "TiffCompression" property to "TiffCompression.None" to apply no compression while saving,
// which may result in a very large output file.
// Set the "TiffCompression" property to "TiffCompression.Rle" to apply RLE compression
// Set the "TiffCompression" property to "TiffCompression.Lzw" to apply LZW compression.
// Set the "TiffCompression" property to "TiffCompression.Ccitt3" to apply CCITT3 compression.
// Set the "TiffCompression" property to "TiffCompression.Ccitt4" to apply CCITT4 compression.
options.TiffCompression = tiffCompression;

doc.Save(ArtifactsDir + "ImageSaveOptions.TiffImageCompression.tiff", options);

Source*

Other Highlights

  • Chart API Enhancements: The Chart API gains new features for greater customization, including the ability to show or hide chart DataTable and specify font properties for various chart elements.
  • WMF Metafile Emulation: Emulate binary raster operations for WMF metafiles, ensuring accurate rendering during document processing.
  • Simplified MOBI/AZW3 Encoding: Use UTF-8 (without BOM) encoding when exporting to MOBI/AZW3 formats, regardless of the HtmlSaveOptions.Encoding property setting.
  • Bug Fixes and Improvements: Benefit from a comprehensive set of fixes to experience the smooth operation of your document processing tasks.

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

 English