CompositingParameters

CompositingParameters

Overview

CompositingParameters is a class in Aspose.PDF FOSS for .NET.

Image-blending parameters consumed by Stream, int, float, float, float, float, CompositingParameters).

This class provides 3 methods for working with CompositingParameters objects in .NET programs. Available methods include: CompositingParameters. All public members are accessible to any .NET application after installing the Aspose.PDF FOSS for .NET package. Properties: BlendMode, FilterType, IsMasked.

Properties

NameTypeAccessDescription
BlendModeBlendModeReadBlend mode applied when compositing the image onto the page.
FilterTypeImageFilterTypeReadImage-filter hint used when re-encoding the image into the PDF resource dictionary.
IsMaskedboolReadTrue when the image carries an alpha mask that should be honoured during compositing.

Methods

SignatureDescription
CompositingParameters(blendMode: BlendMode)Construct with just a blend mode (filter type defaults to Flate, isMasked defaults to false).
CompositingParameters(blendMode: BlendMode, filterType: ImageFilterType)Construct with blend mode + filter type (isMasked defaults to false).
CompositingParameters(blendMode: BlendMode, filterType: ImageFilterType, isMasked: bool)Construct with blend mode + filter type + mask flag.

See Also