This documentation is for the old version. Go to the latest Graphics Mill docs

ZipCompressor Class

This class is intended to compress binary data with the deflate algorithm (also known as ZIP).

Namespace: Aurigma.GraphicsMill
Assembly: Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)

Syntax

Visual Basic
Public NotInheritable Class ZipCompressor
C#
public sealed class ZipCompressor

Remarks

This class is used by Graphics Mill for .NET for internal data compression. However you can use it to compress your data as well. It exposes two static method: Compress(Byte[]) and Decompress(Byte[]). Simply pass an array as argument and get an array containing compressed or decompressed data.

Inheritance Hierarchy

System.Object
L Aurigma.GraphicsMill.ZipCompressor

Thread Safety

Static members of this type are safe for multi-threaded operations. Instance members of this type are safe for multi-threaded operations.

See Also

Reference