CompressedImage Class

Represents an image that stores its raster data in compressed form instead of fully decoding it into memory.

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

Syntax

C#
public sealed class CompressedImage : Image

Remarks

This is primarily useful for efficiently reading and writing PDF content: a CompressedImage keeps the underlying compressed streams and can write them back to a PDF file without an intermediate decompress/recompress step.

In most cases, you do not need to create or read CompressedImage objects manually; use GetBitmap() to convert to a Bitmap if you need to access or modify pixels.

Inheritance Hierarchy

System.Object
L Aurigma.GraphicsMill.PipelineElement
L Aurigma.GraphicsMill.Image
L Aurigma.GraphicsMill.CompressedImage

See Also

Reference

Manual