Joomla Platform  13.1
Documentation des API du framework Joomla Platform
 Tout Classes Espaces de nommage Fichiers Fonctions Variables Pages
Référence de la classe JImageFilterSmooth
+ Graphe d'héritage de JImageFilterSmooth:
+ Graphe de collaboration de JImageFilterSmooth:

Liste de tous les membres

Fonctions membres publiques

 execute (array $options=array())
- Fonctions membres publiques inherited from JImageFilter
 __construct ($handle)

Additional Inherited Members

- Attributs protégés inherited from JImageFilter
 $handle

Description détaillée

Définition à la ligne 19 du fichier smooth.php.


Documentation des fonctions membres

JImageFilterSmooth::execute ( array  $options = array())

Method to apply a filter to an image resource.

Paramètres:
array$optionsAn array of options for the filter.
Renvoie:
void
Depuis:
11.3
Exceptions:
InvalidArgumentException

Réimplémentée à partir de JImageFilter.

Définition à la ligne 31 du fichier smooth.php.

{
// Validate that the smoothing value exists and is an integer.
if (!isset($options[IMG_FILTER_SMOOTH]) || !is_int($options[IMG_FILTER_SMOOTH]))
{
throw new InvalidArgumentException('No valid smoothing value was given. Expected integer.');
}
// Perform the smoothing filter.
imagefilter($this->handle, IMG_FILTER_SMOOTH, $options[IMG_FILTER_SMOOTH]);
}

La documentation de cette classe a été générée à partir du fichier suivant :