Joomla Platform  13.1
Documentation des API du framework Joomla Platform
 Tout Classes Espaces de nommage Fichiers Fonctions Variables Pages
edgedetect.php
Aller à la documentation de ce fichier.
1 <?php
2 /**
3  * @package Joomla.Platform
4  * @subpackage Image
5  *
6  * @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved.
7  * @license GNU General Public License version 2 or later; see LICENSE
8  */
9 
10 defined('JPATH_PLATFORM') or die;
11 
12 /**
13  * Image Filter class to add an edge detect effect to an image.
14  *
15  * @package Joomla.Platform
16  * @subpackage Image
17  * @since 11.3
18  */
20 {
21  /**
22  * Method to apply a filter to an image resource.
23  *
24  * @param array $options An array of options for the filter.
25  *
26  * @return void
27  *
28  * @since 11.3
29  */
30  public function execute(array $options = array())
31  {
32  // Perform the edge detection filter.
33  imagefilter($this->handle, IMG_FILTER_EDGEDETECT);
34  }
35 }