ImageEn, unit iexUserInteractions

TIERetouchToolInteraction.PixelizeBlockSize

TIERetouchToolInteraction.PixelizeBlockSize


Declaration

property PixelizeBlockSize: Integer;


Description

Specify the size of the pixel blocks drawn onto the brushed area.

For more information: Pixelize

Note: To ensure pixel blocks don't move as user moves the brush, ensure that PixelizeBlockSize is smaller than BrushSize (half the brush size if using a circular brush)

Default: 10


Example

// Pixelate the brushed area (e.g. to hide sensitive detail)
ImageEnView1.RetouchTool.RetouchMode       := iermPixelize;
ImageEnView1.RetouchTool.PixelizeBlockSize := 5;
ImageEnView1.MouseInteractGeneral          := [ miRetouchTool ];