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.
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:
TiffCompression
// 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*
HtmlSaveOptions.Encoding
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.