Table of Contents

Enum EmfPlusCompositingQuality

Namespace
Aspose.Imaging.FileFormats.Emf.EmfPlus.Consts
Assembly
Aspose.Imaging.dll

The CompositingQuality enumeration defines levels of quality for creating composite images

public enum EmfPlusCompositingQuality : byte

Fields

CompositingQualityAssumeLinear = 5

No gamma correction is performed; however, using linear values results in better quality than the default at a slightly lower speed.

CompositingQualityDefault = 1

No gamma correction is performed. Gamma correction controls the overall brightness and contrast of an image. Without gamma correction, composited images can appear too light or too dark.

CompositingQualityGammaCorrected = 4

Enable gamma correction for higher-quality compositing with lower speed. In terms of the result, there is no difference between this value and CompositingQualityHighQuality.

CompositingQualityHighQuality = 3

Gamma correction is performed. Compositing quality is favored at the expense of speed.

CompositingQualityHighSpeed = 2

No gamma correction is performed. Compositing speed is favored at the expense of quality. In terms of the result, there is no difference between this value and CompositingQualityDefault.