From: Michael J. Rubinsky Date: Wed, 17 Feb 2010 01:07:00 +0000 (-0500) Subject: 3rd try X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=0dd195996db1d3f21634adb50d6d51b791fc78c9;p=horde.git 3rd try --- diff --git a/ansel/lib/ImageView/PolaroidStack.php.php b/ansel/lib/ImageView/PolaroidStack.php.php deleted file mode 100644 index b2b2ddbb7..000000000 --- a/ansel/lib/ImageView/PolaroidStack.php.php +++ /dev/null @@ -1,44 +0,0 @@ - - * @package Ansel - */ -class Ansel_ImageView_PolaroidStack extends Ansel_ImageView -{ - public $need = array('PhotoStack'); - - /** - * - * @return Horde_Image - */ - protected function _create() - { - $imgobjs = $this->_getStackImages(); - $style = $this->_params['style']; - $params = array('width' => 100, - 'height' => 100, - 'background' => $style['background']); - - $baseImg = Ansel::getImageObject($params); - try { - $baseImg->addEffect( - 'PhotoStack', - array('images' => $imgobjs, - 'resize_height' => $GLOBALS['conf']['thumbnail']['height'], - 'padding' => 10, - 'background' => $style['background'], - 'type' => 'polaroid')); - $baseImg->applyEffects(); - $baseImg->resize($GLOBALS['conf']['thumbnail']['width'], - $GLOBALS['conf']['thumbnail']['height']); - - } catch (Horde_Image_Exception $e) { - return false; - } - - return $baseImg; - } - -}