TwistPHP Documentation

filterBlur

File path: dist/twist/Core/Models/Image/Image.model.php
Namespace: Twist\Core\Models\Image
Extends:

filterBlurApply a Blur effect to the image, select the type of blur that is required and set the number of passes to make, defaults to 1

Parameters

Name Type Description
[$strType = 'selective']stringn/a
[$intTotalPasses = 1]integern/a

Return Values

void — No return information has been documented for this function.

Example

<?php
//Set the variables for the example
$strType 'selective';
$intTotalPasses 1;

//Call the function filterBlur with the example vars
$resImage = new \Twist\Core\Models\Image\Image();
$resImage -> filterBlur($strType$intTotalPasses);