Set this Filelink's transform_url to include the partial_pixelate task
Signature
public function partialPixelate([integer
$amount = 10,
[integer
$blur = 4,
[array
$objects = ,
[string
$type = 'rect']]]] )
Parameters
$amount
—
integer
Amount to pixelate the image. Range is 2 to 100
$blur
—
integer
Amount to pixelate the image. Range is 0 to 20.
$objects
—
array
Area(s) of the image to blur. This variable is an array of arrays. Each array input for this parameter defines a different section of the image and must have exactly 4 integers: 'x coordinate,y coordinate,width,height' - e.g. [[10,20,200,250]] selects a 200x250px rectangle starting 10 pixels from the left edge of the image and 20 pixels from the top edge of the image. The values for these arrays can be any integer from 0 to 10000.
$type
—
string
The shape of the blur area. The options are rect (for rectangle shape) or oval (for oval shape).