File path: dist/twist/Core/Models/Image/Image.model.php
Namespace: Twist\Core\Models\Image
filterBlur
— Apply 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
Name | Description |
---|---|
[$strType = 'selective'] | n/a |
[$intTotalPasses = 1] | n/a |
void — No return information has been documented for this function.
<?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);