Browse our Products

Aspose.Note for Java 21.3 Release Notes

Features and Improvements

KeySummaryCategory
NOTENET-3037Save the OneNote with color(Black & White,Greyscale and Color) and Compression(JPEG,LZW and Pack-bits) in Tiff formatFeature
NOTENET-3061Save the OneNote with Compression(JPEG,LZW and Pack-bits) in Tiff formatFeature
NOTENET-3116Check if file is encryptedFeature

Public API and Backward Incompatible Changes

The following public types were added:Description
com.aspose.note.TiffCompressionSpecifies what type of compression to use when saving a document to the TIFF format.
The following public constants were added:Description
com.aspose.note.TiffCompression.NoneSpecifies no compression.
com.aspose.note.TiffCompression.RleSpecifies RLE compression.
com.aspose.note.TiffCompression.Ccitt3Specifies CCITT Group 3 fax encoding.
com.aspose.note.TiffCompression.Ccitt4Specifies CCITT Group 4 fax encoding.
com.aspose.note.TiffCompression.LzwSpecifies LZW compression.
com.aspose.note.TiffCompression.JpegSpecifies JPEG DCT compression compression.
com.aspose.note.TiffCompression.PackBitsSpecifies Macintosh RLE compression.
The following public properties were added:Description
com.aspose.note.ImageSaveOptions.getTiffCompressionGets what type of compression is used when saving a document to the TIFF format.
com.aspose.note.ImageSaveOptions.setTiffCompression(int)Sets what type of compression to use when saving a document to the TIFF format.
The following public static methods were added:Description
com.aspose.note.Document.isEncrypted(java.io.InputStream,com.aspose.note.Document[])Checks whether a document from a stream is encrypted.
com.aspose.note.Document.isEncrypted(java.lang.String,com.aspose.note.Document[])Checks whether a document from a stream is encrypted.
com.aspose.note.Document.isEncrypted(java.io.InputStream,com.aspose.note.LoadOptions,com.aspose.note.Document[])Checks whether a document from a stream is encrypted.
com.aspose.note.Document.isEncrypted(java.io.InputStream,java.lang.String,com.aspose.note.Document[])Checks whether a document from a file is encrypted.
com.aspose.note.Document.isEncrypted(java.lang.String,com.aspose.note.LoadOptions,com.aspose.note.Document[])Checks whether a document from a file is encrypted.
com.aspose.note.Document.isEncrypted(java.lang.String,java.lang.String,com.aspose.note.Document[])Checks whether a document from a file is encrypted.