LDAPAccountManager/lam/lib/imageutils.inc

181 lines
3.7 KiB
PHP

<?php
namespace LAM\ImageUtils;
use Imagick;
/*
This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/)
Copyright (C) 2018 Roland Gruber
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
/**
* Image manipulation functions.
*
* @author Roland Gruber
*/
/**
* Factory to create modificators for images.
*
* @author Roland Gruber
*/
class ImageManipulationFactory {
/**
* Returns an image manipulator based on installed PHP modules.
*
* @param string $imageData binary string of image data
* @return ImageManipulator manipulator
*/
public static function getImageManipulator($imageData) {
if (extension_loaded('imagick')) {
return new ImageManipulatorImagick($imageData);
}
}
}
/**
* Modifies images.
*
* @author Roland Gruber
*/
interface ImageManipulator {
/**
* Returns the height of the image.
*
* @return int height
*/
public function getHeight();
/**
* Returns the width of the image.
*
* @return int width
*/
public function getWidth();
/**
* Resizes the image to the given maximum dimensions.
*
* @param int $width width
* @param int $height height
*/
public function thumbnail($width, $height);
/**
* Converts the image to JPEG format.
*/
public function convertToJpeg();
/**
* Crops the image.
*
* @param int $x starting point in original image
* @param int $y starting point in original image
* @param int $width width of target size
* @param int $height height of target size
*/
public function crop($x, $y, $width, $height);
/**
* Returns the image as binary string.
*
* @return string image data
*/
public function getImageData();
}
/**
* Manipulates images using Imagick library.
*
* @author Roland Gruber
*/
class ImageManipulatorImagick implements ImageManipulator {
/**
* Image
*
* @var Imagick image
*/
private $image;
/**
* Constructor.
*
* @param string $imageData original image as binary string
*/
public function __construct($imageData) {
$this->image = new Imagick();
$this->image->readimageblob($imageData);
}
/**
* {@inheritDoc}
* @see \LAM\ImageUtils\ImageManipulator::getHeight()
*/
public function getHeight() {
$this->image->getimageheight();
}
/**
* {@inheritDoc}
* @see \LAM\ImageUtils\ImageManipulator::getWidth()
*/
public function getWidth() {
$this->image->getimagewidth();
}
/**
* {@inheritDoc}
* @see \LAM\ImageUtils\ImageManipulator::getAsJpeg()
*/
public function convertToJpeg() {
$this->image->setImageCompression(Imagick::COMPRESSION_JPEG);
$this->image->setImageFormat('jpeg');
}
/**
* {@inheritDoc}
* @see \LAM\ImageUtils\ImageManipulator::crop()
*/
public function crop($x, $y, $width, $height) {
$this->image->cropimage($width, $height, $x, $y);
}
/**
* {@inheritDoc}
* @see \LAM\ImageUtils\ImageManipulator::resize()
*/
public function thumbnail($width, $height) {
$this->image->thumbnailimage($width, $height, true);
}
/**
* {@inheritDoc}
* @see \LAM\ImageUtils\ImageManipulator::getImageData()
*/
public function getImageData() {
return $this->image->getimageblob();
}
}
?>