Share via


CGContext.DrawImageApplyingToneMapping Method

Definition

Overloads

Name Description
DrawImageApplyingToneMapping(CGRect, CGImage, CGToneMapping, NSDictionary)

Draw the specified image onto the CGContext, applying the tone mapping and any tone mapping options.

DrawImageApplyingToneMapping(CGRect, CGImage, CGToneMapping, CGToneMappingOptions)

Draw the specified image onto the CGContext, applying the tone mapping and any tone mapping options.

DrawImageApplyingToneMapping(CGRect, CGImage, CGToneMapping, NSDictionary)

Draw the specified image onto the CGContext, applying the tone mapping and any tone mapping options.

public bool DrawImageApplyingToneMapping(CoreGraphics.CGRect rect, CoreGraphics.CGImage image, CoreGraphics.CGToneMapping method, Foundation.NSDictionary? options);
member this.DrawImageApplyingToneMapping : CoreGraphics.CGRect * CoreGraphics.CGImage * CoreGraphics.CGToneMapping * Foundation.NSDictionary -> bool

Parameters

rect
CGRect

The rectangle where the image is rendered.

image
CGImage

The image to render.

method
CGToneMapping

The tone mapping method to use.

options
NSDictionary

The tone mapping options to use.

Returns

Returns true if successful, otherwise false.

Applies to

DrawImageApplyingToneMapping(CGRect, CGImage, CGToneMapping, CGToneMappingOptions)

Draw the specified image onto the CGContext, applying the tone mapping and any tone mapping options.

public bool DrawImageApplyingToneMapping(CoreGraphics.CGRect rect, CoreGraphics.CGImage image, CoreGraphics.CGToneMapping method, CoreGraphics.CGToneMappingOptions? options);
member this.DrawImageApplyingToneMapping : CoreGraphics.CGRect * CoreGraphics.CGImage * CoreGraphics.CGToneMapping * CoreGraphics.CGToneMappingOptions -> bool

Parameters

rect
CGRect

The rectangle where the image is rendered.

image
CGImage

The image to render.

method
CGToneMapping

The tone mapping method to use.

options
CGToneMappingOptions

The tone mapping options to use.

Returns

Returns true if successful, otherwise false.

Applies to