Click or drag to resize
CanvasDrawingSessionEffectTileSize Property
Specifies the tile size used when drawing image effects.

Namespace:  Microsoft.Graphics.Canvas
Assembly:  Microsoft.Graphics.Canvas (in Microsoft.Graphics.Canvas.dll) Version: 0.0.0.0
Syntax
C#
public BitmapSize EffectTileSize { get; set; }

Property Value

Type: BitmapSize
Remarks

For advanced scenarios, this property allows the application to tune the performance and resource usage of effect drawing operations.

Large image effects are drawn by splitting them up into a number of smaller tiles, which are sent separately to the GPU. This reduces intermediate memory usage, and allows processing very large images (potentially larger than MaximumBitmapSizeInPixels, which can be necessary for instance during printing).

The default tile size is 1024x1024.

See Also