2010-07-02 01:48:07 +02:00
|
|
|
<?php
|
2016-11-04 16:44:49 +01:00
|
|
|
/**
|
2017-12-07 14:56:11 +01:00
|
|
|
* @file src/Object/Image.php
|
|
|
|
* @brief This file contains the Image class for image processing
|
2016-11-04 16:44:49 +01:00
|
|
|
*/
|
2017-11-29 13:52:27 +01:00
|
|
|
namespace Friendica\Object;
|
2016-11-04 16:44:49 +01:00
|
|
|
|
2019-02-16 23:11:30 +01:00
|
|
|
use Exception;
|
2017-11-07 03:22:52 +01:00
|
|
|
use Friendica\Core\Config;
|
2017-08-26 08:04:21 +02:00
|
|
|
use Friendica\Core\System;
|
2019-12-15 23:50:35 +01:00
|
|
|
use Friendica\DI;
|
2019-10-18 03:26:15 +02:00
|
|
|
use Friendica\Util\Images;
|
2017-11-29 23:29:11 +01:00
|
|
|
use Imagick;
|
|
|
|
use ImagickPixel;
|
2017-04-30 06:07:00 +02:00
|
|
|
|
2017-11-29 18:17:12 +01:00
|
|
|
/**
|
2017-12-07 14:56:11 +01:00
|
|
|
* Class to handle images
|
2017-11-29 18:17:12 +01:00
|
|
|
*/
|
2017-12-07 14:56:11 +01:00
|
|
|
class Image
|
2017-11-29 18:17:12 +01:00
|
|
|
{
|
2019-01-21 22:51:59 +01:00
|
|
|
/** @var Imagick|resource */
|
2016-11-04 16:44:49 +01:00
|
|
|
private $image;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Put back gd stuff, not everybody have Imagick
|
|
|
|
*/
|
|
|
|
private $imagick;
|
|
|
|
private $width;
|
|
|
|
private $height;
|
|
|
|
private $valid;
|
|
|
|
private $type;
|
|
|
|
private $types;
|
|
|
|
|
2017-11-29 18:17:12 +01:00
|
|
|
/**
|
|
|
|
* @brief Constructor
|
2019-01-07 07:07:42 +01:00
|
|
|
* @param string $data
|
2017-11-29 18:17:12 +01:00
|
|
|
* @param boolean $type optional, default null
|
2019-01-06 22:06:53 +01:00
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
|
|
|
* @throws \ImagickException
|
2017-11-29 18:17:12 +01:00
|
|
|
*/
|
|
|
|
public function __construct($data, $type = null)
|
2017-11-29 13:52:27 +01:00
|
|
|
{
|
2016-11-04 16:44:49 +01:00
|
|
|
$this->imagick = class_exists('Imagick');
|
2019-10-18 03:26:15 +02:00
|
|
|
$this->types = Images::supportedTypes();
|
2017-11-29 18:17:12 +01:00
|
|
|
if (!array_key_exists($type, $this->types)) {
|
2019-10-18 03:26:15 +02:00
|
|
|
$type = 'image/jpeg';
|
2016-11-04 16:44:49 +01:00
|
|
|
}
|
|
|
|
$this->type = $type;
|
2012-07-21 17:17:19 +02:00
|
|
|
|
2017-11-29 18:17:12 +01:00
|
|
|
if ($this->isImagick() && $this->loadData($data)) {
|
2016-11-04 19:26:28 +01:00
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
// Failed to load with Imagick, fallback
|
|
|
|
$this->imagick = false;
|
|
|
|
}
|
2017-11-29 18:17:12 +01:00
|
|
|
return $this->loadData($data);
|
2014-06-16 21:49:45 +02:00
|
|
|
}
|
|
|
|
|
2017-11-29 18:17:12 +01:00
|
|
|
/**
|
|
|
|
* @brief Destructor
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function __destruct()
|
|
|
|
{
|
2016-11-04 16:44:49 +01:00
|
|
|
if ($this->image) {
|
2017-11-29 18:17:12 +01:00
|
|
|
if ($this->isImagick()) {
|
2016-11-04 16:44:49 +01:00
|
|
|
$this->image->clear();
|
|
|
|
$this->image->destroy();
|
|
|
|
return;
|
|
|
|
}
|
2017-05-01 22:16:22 +02:00
|
|
|
if (is_resource($this->image)) {
|
2017-05-01 16:38:39 +02:00
|
|
|
imagedestroy($this->image);
|
2017-05-01 22:16:22 +02:00
|
|
|
}
|
2016-11-04 16:44:49 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-29 18:17:12 +01:00
|
|
|
/**
|
|
|
|
* @return boolean
|
|
|
|
*/
|
|
|
|
public function isImagick()
|
2017-11-29 13:52:27 +01:00
|
|
|
{
|
2016-11-04 16:44:49 +01:00
|
|
|
return $this->imagick;
|
2014-06-16 21:49:45 +02:00
|
|
|
}
|
2012-09-12 11:55:09 +02:00
|
|
|
|
2017-11-29 18:17:12 +01:00
|
|
|
/**
|
2019-01-07 07:07:42 +01:00
|
|
|
* @param string $data data
|
2017-11-29 18:17:12 +01:00
|
|
|
* @return boolean
|
2019-01-06 22:06:53 +01:00
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
|
|
|
* @throws \ImagickException
|
2017-11-29 18:17:12 +01:00
|
|
|
*/
|
|
|
|
private function loadData($data)
|
|
|
|
{
|
|
|
|
if ($this->isImagick()) {
|
2016-11-04 19:26:28 +01:00
|
|
|
$this->image = new Imagick();
|
2016-11-04 16:44:49 +01:00
|
|
|
try {
|
2012-09-12 11:55:09 +02:00
|
|
|
$this->image->readImageBlob($data);
|
2016-11-04 19:26:28 +01:00
|
|
|
} catch (Exception $e) {
|
2012-09-12 11:55:09 +02:00
|
|
|
// Imagick couldn't use the data
|
|
|
|
return false;
|
|
|
|
}
|
2012-07-22 13:43:46 +02:00
|
|
|
|
2016-11-04 16:44:49 +01:00
|
|
|
/*
|
|
|
|
* Setup the image to the format it will be saved to
|
|
|
|
*/
|
2019-10-18 03:26:15 +02:00
|
|
|
$map = Images::getFormatsMap();
|
2017-12-17 21:35:07 +01:00
|
|
|
$format = $map[$this->type];
|
2016-11-04 16:44:49 +01:00
|
|
|
$this->image->setFormat($format);
|
|
|
|
|
|
|
|
// Always coalesce, if it is not a multi-frame image it won't hurt anyway
|
|
|
|
$this->image = $this->image->coalesceImages();
|
|
|
|
|
|
|
|
/*
|
|
|
|
* setup the compression here, so we'll do it only once
|
|
|
|
*/
|
2017-11-29 18:17:12 +01:00
|
|
|
switch ($this->getType()) {
|
2016-11-04 16:44:49 +01:00
|
|
|
case "image/png":
|
2017-11-07 03:22:52 +01:00
|
|
|
$quality = Config::get('system', 'png_quality');
|
2016-11-04 16:44:49 +01:00
|
|
|
if ((! $quality) || ($quality > 9)) {
|
|
|
|
$quality = PNG_QUALITY;
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* From http://www.imagemagick.org/script/command-line-options.php#quality:
|
|
|
|
*
|
|
|
|
* 'For the MNG and PNG image formats, the quality value sets
|
|
|
|
* the zlib compression level (quality / 10) and filter-type (quality % 10).
|
|
|
|
* The default PNG "quality" is 75, which means compression level 7 with adaptive PNG filtering,
|
|
|
|
* unless the image has a color map, in which case it means compression level 7 with no PNG filtering'
|
|
|
|
*/
|
|
|
|
$quality = $quality * 10;
|
|
|
|
$this->image->setCompressionQuality($quality);
|
|
|
|
break;
|
|
|
|
case "image/jpeg":
|
2017-11-07 03:22:52 +01:00
|
|
|
$quality = Config::get('system', 'jpeg_quality');
|
2016-11-04 16:44:49 +01:00
|
|
|
if ((! $quality) || ($quality > 100)) {
|
|
|
|
$quality = JPEG_QUALITY;
|
|
|
|
}
|
|
|
|
$this->image->setCompressionQuality($quality);
|
|
|
|
}
|
2012-07-21 17:17:19 +02:00
|
|
|
|
2012-10-09 17:35:32 +02:00
|
|
|
// The 'width' and 'height' properties are only used by non-Imagick routines.
|
|
|
|
$this->width = $this->image->getImageWidth();
|
2012-09-12 11:55:09 +02:00
|
|
|
$this->height = $this->image->getImageHeight();
|
|
|
|
$this->valid = true;
|
2012-07-21 17:17:19 +02:00
|
|
|
|
2012-10-09 17:35:32 +02:00
|
|
|
return true;
|
2012-09-12 11:55:09 +02:00
|
|
|
}
|
2012-07-22 13:43:46 +02:00
|
|
|
|
2012-09-12 11:55:09 +02:00
|
|
|
$this->valid = false;
|
|
|
|
$this->image = @imagecreatefromstring($data);
|
2016-11-04 16:44:49 +01:00
|
|
|
if ($this->image !== false) {
|
2012-09-12 11:55:09 +02:00
|
|
|
$this->width = imagesx($this->image);
|
|
|
|
$this->height = imagesy($this->image);
|
|
|
|
$this->valid = true;
|
|
|
|
imagealphablending($this->image, false);
|
|
|
|
imagesavealpha($this->image, true);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2016-11-04 16:44:49 +01:00
|
|
|
|
2012-09-12 11:55:09 +02:00
|
|
|
return false;
|
|
|
|
}
|
2012-07-22 17:09:18 +02:00
|
|
|
|
2017-11-29 18:17:12 +01:00
|
|
|
/**
|
|
|
|
* @return boolean
|
|
|
|
*/
|
|
|
|
public function isValid()
|
|
|
|
{
|
|
|
|
if ($this->isImagick()) {
|
2016-11-04 16:44:49 +01:00
|
|
|
return ($this->image !== false);
|
|
|
|
}
|
|
|
|
return $this->valid;
|
2014-06-16 21:49:45 +02:00
|
|
|
}
|
2012-07-21 17:17:19 +02:00
|
|
|
|
2017-11-29 18:17:12 +01:00
|
|
|
/**
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function getWidth()
|
|
|
|
{
|
|
|
|
if (!$this->isValid()) {
|
2016-11-04 16:44:49 +01:00
|
|
|
return false;
|
|
|
|
}
|
2012-07-21 17:17:19 +02:00
|
|
|
|
2017-11-29 18:17:12 +01:00
|
|
|
if ($this->isImagick()) {
|
2016-11-04 16:44:49 +01:00
|
|
|
return $this->image->getImageWidth();
|
|
|
|
}
|
|
|
|
return $this->width;
|
|
|
|
}
|
2012-07-21 17:17:19 +02:00
|
|
|
|
2017-11-29 18:17:12 +01:00
|
|
|
/**
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function getHeight()
|
|
|
|
{
|
|
|
|
if (!$this->isValid()) {
|
2016-11-04 16:44:49 +01:00
|
|
|
return false;
|
|
|
|
}
|
2012-07-21 17:17:19 +02:00
|
|
|
|
2017-11-29 18:17:12 +01:00
|
|
|
if ($this->isImagick()) {
|
2016-11-04 16:44:49 +01:00
|
|
|
return $this->image->getImageHeight();
|
|
|
|
}
|
|
|
|
return $this->height;
|
|
|
|
}
|
2012-07-21 17:17:19 +02:00
|
|
|
|
2017-11-29 18:17:12 +01:00
|
|
|
/**
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function getImage()
|
|
|
|
{
|
|
|
|
if (!$this->isValid()) {
|
2016-11-04 16:44:49 +01:00
|
|
|
return false;
|
|
|
|
}
|
2012-07-21 17:17:19 +02:00
|
|
|
|
2017-11-29 18:17:12 +01:00
|
|
|
if ($this->isImagick()) {
|
2016-11-04 16:44:49 +01:00
|
|
|
/* Clean it */
|
|
|
|
$this->image = $this->image->deconstructImages();
|
|
|
|
return $this->image;
|
|
|
|
}
|
|
|
|
return $this->image;
|
|
|
|
}
|
2012-07-22 13:43:46 +02:00
|
|
|
|
2017-11-29 18:17:12 +01:00
|
|
|
/**
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function getType()
|
|
|
|
{
|
|
|
|
if (!$this->isValid()) {
|
2016-11-04 16:44:49 +01:00
|
|
|
return false;
|
|
|
|
}
|
2012-07-22 13:43:46 +02:00
|
|
|
|
2016-11-04 16:44:49 +01:00
|
|
|
return $this->type;
|
|
|
|
}
|
2012-07-22 13:43:46 +02:00
|
|
|
|
2017-11-29 18:17:12 +01:00
|
|
|
/**
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function getExt()
|
|
|
|
{
|
|
|
|
if (!$this->isValid()) {
|
2016-11-04 16:44:49 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->types[$this->getType()];
|
|
|
|
}
|
|
|
|
|
2017-11-29 18:17:12 +01:00
|
|
|
/**
|
|
|
|
* @param integer $max max dimension
|
|
|
|
* @return mixed
|
|
|
|
*/
|
2017-12-07 14:56:11 +01:00
|
|
|
public function scaleDown($max)
|
2017-11-29 18:17:12 +01:00
|
|
|
{
|
|
|
|
if (!$this->isValid()) {
|
2016-11-04 16:44:49 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$width = $this->getWidth();
|
|
|
|
$height = $this->getHeight();
|
|
|
|
|
|
|
|
if ((! $width)|| (! $height)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($width > $max && $height > $max) {
|
2012-09-29 14:20:29 +02:00
|
|
|
// very tall image (greater than 16:9)
|
|
|
|
// constrain the width - let the height float.
|
|
|
|
|
2016-11-04 16:44:49 +01:00
|
|
|
if ((($height * 9) / 16) > $width) {
|
|
|
|
$dest_width = $max;
|
2016-11-04 19:26:28 +01:00
|
|
|
$dest_height = intval(($height * $max) / $width);
|
2016-11-04 16:44:49 +01:00
|
|
|
} elseif ($width > $height) {
|
|
|
|
// else constrain both dimensions
|
2012-09-29 14:20:29 +02:00
|
|
|
$dest_width = $max;
|
2016-11-04 19:26:28 +01:00
|
|
|
$dest_height = intval(($height * $max) / $width);
|
2016-11-04 16:44:49 +01:00
|
|
|
} else {
|
2016-11-04 19:26:28 +01:00
|
|
|
$dest_width = intval(($width * $max) / $height);
|
2016-11-04 16:44:49 +01:00
|
|
|
$dest_height = $max;
|
2012-09-29 14:20:29 +02:00
|
|
|
}
|
2016-11-04 16:44:49 +01:00
|
|
|
} else {
|
2016-11-04 19:26:28 +01:00
|
|
|
if ($width > $max) {
|
2016-11-04 16:44:49 +01:00
|
|
|
$dest_width = $max;
|
2016-11-04 19:26:28 +01:00
|
|
|
$dest_height = intval(($height * $max) / $width);
|
2016-11-04 16:44:49 +01:00
|
|
|
} else {
|
2016-11-04 19:26:28 +01:00
|
|
|
if ($height > $max) {
|
2012-09-29 14:20:29 +02:00
|
|
|
// very tall image (greater than 16:9)
|
2012-09-29 14:46:01 +02:00
|
|
|
// but width is OK - don't do anything
|
2012-09-29 14:20:29 +02:00
|
|
|
|
2016-11-04 16:44:49 +01:00
|
|
|
if ((($height * 9) / 16) > $width) {
|
2012-09-29 14:46:01 +02:00
|
|
|
$dest_width = $width;
|
2016-11-04 16:44:49 +01:00
|
|
|
$dest_height = $height;
|
|
|
|
} else {
|
2016-11-04 19:26:28 +01:00
|
|
|
$dest_width = intval(($width * $max) / $height);
|
2016-11-04 16:44:49 +01:00
|
|
|
$dest_height = $max;
|
2012-09-29 14:20:29 +02:00
|
|
|
}
|
2016-11-04 16:44:49 +01:00
|
|
|
} else {
|
|
|
|
$dest_width = $width;
|
|
|
|
$dest_height = $height;
|
|
|
|
}
|
|
|
|
}
|
2014-06-16 21:49:45 +02:00
|
|
|
}
|
2012-07-22 13:43:46 +02:00
|
|
|
|
2017-12-17 21:35:07 +01:00
|
|
|
return $this->scale($dest_width, $dest_height);
|
2014-06-16 21:49:45 +02:00
|
|
|
}
|
|
|
|
|
2017-11-29 18:17:12 +01:00
|
|
|
/**
|
|
|
|
* @param integer $degrees degrees to rotate image
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function rotate($degrees)
|
|
|
|
{
|
|
|
|
if (!$this->isValid()) {
|
2016-11-04 16:44:49 +01:00
|
|
|
return false;
|
|
|
|
}
|
2014-06-16 21:49:45 +02:00
|
|
|
|
2017-11-29 18:17:12 +01:00
|
|
|
if ($this->isImagick()) {
|
2016-11-04 16:44:49 +01:00
|
|
|
$this->image->setFirstIterator();
|
|
|
|
do {
|
|
|
|
$this->image->rotateImage(new ImagickPixel(), -$degrees); // ImageMagick rotates in the opposite direction of imagerotate()
|
|
|
|
} while ($this->image->nextImage());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-05-01 16:38:39 +02:00
|
|
|
// if script dies at this point check memory_limit setting in php.ini
|
2017-11-29 18:17:12 +01:00
|
|
|
$this->image = imagerotate($this->image, $degrees, 0);
|
2016-11-04 16:44:49 +01:00
|
|
|
$this->width = imagesx($this->image);
|
|
|
|
$this->height = imagesy($this->image);
|
2014-06-16 21:49:45 +02:00
|
|
|
}
|
2016-11-04 16:44:49 +01:00
|
|
|
|
2017-11-29 18:17:12 +01:00
|
|
|
/**
|
|
|
|
* @param boolean $horiz optional, default true
|
|
|
|
* @param boolean $vert optional, default false
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function flip($horiz = true, $vert = false)
|
|
|
|
{
|
|
|
|
if (!$this->isValid()) {
|
2016-11-04 16:44:49 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-11-29 18:17:12 +01:00
|
|
|
if ($this->isImagick()) {
|
2016-11-04 16:44:49 +01:00
|
|
|
$this->image->setFirstIterator();
|
|
|
|
do {
|
|
|
|
if ($horiz) {
|
|
|
|
$this->image->flipImage();
|
|
|
|
}
|
|
|
|
if ($vert) {
|
|
|
|
$this->image->flopImage();
|
|
|
|
}
|
|
|
|
} while ($this->image->nextImage());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$w = imagesx($this->image);
|
|
|
|
$h = imagesy($this->image);
|
|
|
|
$flipped = imagecreate($w, $h);
|
|
|
|
if ($horiz) {
|
|
|
|
for ($x = 0; $x < $w; $x++) {
|
|
|
|
imagecopy($flipped, $this->image, $x, 0, $w - $x - 1, 0, 1, $h);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ($vert) {
|
|
|
|
for ($y = 0; $y < $h; $y++) {
|
|
|
|
imagecopy($flipped, $this->image, 0, $y, 0, $h - $y - 1, $w, 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$this->image = $flipped;
|
2015-09-30 00:19:54 +02:00
|
|
|
}
|
2012-07-21 17:17:19 +02:00
|
|
|
|
2017-11-29 18:17:12 +01:00
|
|
|
/**
|
|
|
|
* @param string $filename filename
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function orient($filename)
|
|
|
|
{
|
|
|
|
if ($this->isImagick()) {
|
2016-11-04 16:44:49 +01:00
|
|
|
// based off comment on http://php.net/manual/en/imagick.getimageorientation.php
|
|
|
|
$orientation = $this->image->getImageOrientation();
|
|
|
|
switch ($orientation) {
|
2017-11-29 23:29:11 +01:00
|
|
|
case Imagick::ORIENTATION_BOTTOMRIGHT:
|
2017-11-29 18:17:12 +01:00
|
|
|
$this->image->rotateimage("#000", 180);
|
|
|
|
break;
|
2017-11-29 23:29:11 +01:00
|
|
|
case Imagick::ORIENTATION_RIGHTTOP:
|
2017-11-29 18:17:12 +01:00
|
|
|
$this->image->rotateimage("#000", 90);
|
|
|
|
break;
|
2017-11-29 23:29:11 +01:00
|
|
|
case Imagick::ORIENTATION_LEFTBOTTOM:
|
2017-11-29 18:17:12 +01:00
|
|
|
$this->image->rotateimage("#000", -90);
|
|
|
|
break;
|
2016-11-04 16:44:49 +01:00
|
|
|
}
|
2012-07-21 17:17:19 +02:00
|
|
|
|
2017-11-29 23:29:11 +01:00
|
|
|
$this->image->setImageOrientation(Imagick::ORIENTATION_TOPLEFT);
|
2016-11-04 16:44:49 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
// based off comment on http://php.net/manual/en/function.imagerotate.php
|
|
|
|
|
2017-11-29 18:17:12 +01:00
|
|
|
if (!$this->isValid()) {
|
2016-11-04 16:44:49 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-11-04 19:26:28 +01:00
|
|
|
if ((!function_exists('exif_read_data')) || ($this->getType() !== 'image/jpeg')) {
|
2016-11-04 16:44:49 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-11-29 18:17:12 +01:00
|
|
|
$exif = @exif_read_data($filename, null, true);
|
2016-11-04 19:26:28 +01:00
|
|
|
if (!$exif) {
|
2016-11-04 16:44:49 +01:00
|
|
|
return;
|
|
|
|
}
|
2012-09-05 13:02:30 +02:00
|
|
|
|
2019-03-09 04:09:41 +01:00
|
|
|
$ort = isset($exif['IFD0']['Orientation']) ? $exif['IFD0']['Orientation'] : 1;
|
2012-09-05 13:02:30 +02:00
|
|
|
|
2017-11-29 18:17:12 +01:00
|
|
|
switch ($ort) {
|
2016-11-04 16:44:49 +01:00
|
|
|
case 1: // nothing
|
|
|
|
break;
|
2012-07-21 17:17:19 +02:00
|
|
|
|
2016-11-04 16:44:49 +01:00
|
|
|
case 2: // horizontal flip
|
|
|
|
$this->flip();
|
|
|
|
break;
|
2012-07-21 17:17:19 +02:00
|
|
|
|
2016-11-04 16:44:49 +01:00
|
|
|
case 3: // 180 rotate left
|
|
|
|
$this->rotate(180);
|
|
|
|
break;
|
2012-07-21 17:17:19 +02:00
|
|
|
|
2016-11-04 16:44:49 +01:00
|
|
|
case 4: // vertical flip
|
|
|
|
$this->flip(false, true);
|
|
|
|
break;
|
2012-07-21 17:17:19 +02:00
|
|
|
|
2016-11-04 16:44:49 +01:00
|
|
|
case 5: // vertical flip + 90 rotate right
|
|
|
|
$this->flip(false, true);
|
|
|
|
$this->rotate(-90);
|
|
|
|
break;
|
2012-07-21 17:17:19 +02:00
|
|
|
|
2016-11-04 16:44:49 +01:00
|
|
|
case 6: // 90 rotate right
|
|
|
|
$this->rotate(-90);
|
|
|
|
break;
|
2012-07-21 17:17:19 +02:00
|
|
|
|
2016-11-04 16:44:49 +01:00
|
|
|
case 7: // horizontal flip + 90 rotate right
|
|
|
|
$this->flip();
|
|
|
|
$this->rotate(-90);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 8: // 90 rotate left
|
|
|
|
$this->rotate(90);
|
|
|
|
break;
|
|
|
|
}
|
2012-07-21 17:17:19 +02:00
|
|
|
|
2018-10-29 22:20:46 +01:00
|
|
|
// Logger::log('exif: ' . print_r($exif,true));
|
2016-11-04 16:44:49 +01:00
|
|
|
return $exif;
|
2014-06-16 21:49:45 +02:00
|
|
|
}
|
2015-09-30 00:19:54 +02:00
|
|
|
|
2017-11-29 18:17:12 +01:00
|
|
|
/**
|
|
|
|
* @param integer $min minimum dimension
|
|
|
|
* @return mixed
|
|
|
|
*/
|
2017-12-07 14:56:11 +01:00
|
|
|
public function scaleUp($min)
|
2017-11-29 18:17:12 +01:00
|
|
|
{
|
|
|
|
if (!$this->isValid()) {
|
2016-11-04 16:44:49 +01:00
|
|
|
return false;
|
|
|
|
}
|
2012-07-21 17:17:19 +02:00
|
|
|
|
2016-11-04 16:44:49 +01:00
|
|
|
$width = $this->getWidth();
|
|
|
|
$height = $this->getHeight();
|
2014-06-16 21:49:45 +02:00
|
|
|
|
2016-11-04 19:26:28 +01:00
|
|
|
if ((!$width)|| (!$height)) {
|
2016-11-04 16:44:49 +01:00
|
|
|
return false;
|
|
|
|
}
|
2014-06-16 21:49:45 +02:00
|
|
|
|
2016-11-04 16:44:49 +01:00
|
|
|
if ($width < $min && $height < $min) {
|
|
|
|
if ($width > $height) {
|
|
|
|
$dest_width = $min;
|
2016-11-04 19:26:28 +01:00
|
|
|
$dest_height = intval(($height * $min) / $width);
|
2016-11-04 16:44:49 +01:00
|
|
|
} else {
|
2016-11-04 19:26:28 +01:00
|
|
|
$dest_width = intval(($width * $min) / $height);
|
2016-11-04 16:44:49 +01:00
|
|
|
$dest_height = $min;
|
|
|
|
}
|
|
|
|
} else {
|
2016-11-04 19:26:28 +01:00
|
|
|
if ($width < $min) {
|
2016-11-04 16:44:49 +01:00
|
|
|
$dest_width = $min;
|
2016-11-04 19:26:28 +01:00
|
|
|
$dest_height = intval(($height * $min) / $width);
|
2016-11-04 16:44:49 +01:00
|
|
|
} else {
|
2016-11-04 19:26:28 +01:00
|
|
|
if ($height < $min) {
|
|
|
|
$dest_width = intval(($width * $min) / $height);
|
2016-11-04 16:44:49 +01:00
|
|
|
$dest_height = $min;
|
|
|
|
} else {
|
|
|
|
$dest_width = $width;
|
|
|
|
$dest_height = $height;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-06-16 21:49:45 +02:00
|
|
|
|
2017-12-17 21:35:07 +01:00
|
|
|
return $this->scale($dest_width, $dest_height);
|
2014-06-16 21:49:45 +02:00
|
|
|
}
|
|
|
|
|
2017-11-29 18:17:12 +01:00
|
|
|
/**
|
|
|
|
* @param integer $dim dimension
|
|
|
|
* @return mixed
|
|
|
|
*/
|
2017-12-07 14:56:11 +01:00
|
|
|
public function scaleToSquare($dim)
|
2017-11-29 18:17:12 +01:00
|
|
|
{
|
|
|
|
if (!$this->isValid()) {
|
2016-11-04 16:44:49 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-12-17 21:35:07 +01:00
|
|
|
return $this->scale($dim, $dim);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Scale image to target dimensions
|
|
|
|
*
|
|
|
|
* @param int $dest_width
|
|
|
|
* @param int $dest_height
|
|
|
|
* @return boolean
|
|
|
|
*/
|
|
|
|
private function scale($dest_width, $dest_height)
|
|
|
|
{
|
|
|
|
if (!$this->isValid()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-11-29 18:17:12 +01:00
|
|
|
if ($this->isImagick()) {
|
2017-12-17 21:35:07 +01:00
|
|
|
/*
|
|
|
|
* If it is not animated, there will be only one iteration here,
|
|
|
|
* so don't bother checking
|
|
|
|
*/
|
|
|
|
// Don't forget to go back to the first frame
|
2016-11-04 16:44:49 +01:00
|
|
|
$this->image->setFirstIterator();
|
|
|
|
do {
|
2017-12-17 21:35:07 +01:00
|
|
|
// FIXME - implement horizontal bias for scaling as in following GD functions
|
|
|
|
// to allow very tall images to be constrained only horizontally.
|
|
|
|
$this->image->scaleImage($dest_width, $dest_height);
|
2016-11-04 16:44:49 +01:00
|
|
|
} while ($this->image->nextImage());
|
|
|
|
|
2017-12-17 21:35:07 +01:00
|
|
|
// These may not be necessary anymore
|
|
|
|
$this->width = $this->image->getImageWidth();
|
|
|
|
$this->height = $this->image->getImageHeight();
|
|
|
|
} else {
|
|
|
|
$dest = imagecreatetruecolor($dest_width, $dest_height);
|
|
|
|
imagealphablending($dest, false);
|
|
|
|
imagesavealpha($dest, true);
|
|
|
|
|
|
|
|
if ($this->type=='image/png') {
|
|
|
|
imagefill($dest, 0, 0, imagecolorallocatealpha($dest, 0, 0, 0, 127)); // fill with alpha
|
|
|
|
}
|
|
|
|
|
|
|
|
imagecopyresampled($dest, $this->image, 0, 0, 0, 0, $dest_width, $dest_height, $this->width, $this->height);
|
|
|
|
|
|
|
|
if ($this->image) {
|
|
|
|
imagedestroy($this->image);
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->image = $dest;
|
|
|
|
$this->width = imagesx($this->image);
|
|
|
|
$this->height = imagesy($this->image);
|
2016-11-04 16:44:49 +01:00
|
|
|
}
|
2017-12-17 21:35:07 +01:00
|
|
|
|
|
|
|
return true;
|
2016-11-04 16:44:49 +01:00
|
|
|
}
|
|
|
|
|
2017-11-29 18:17:12 +01:00
|
|
|
/**
|
|
|
|
* @param integer $max maximum
|
|
|
|
* @param integer $x x coordinate
|
|
|
|
* @param integer $y y coordinate
|
|
|
|
* @param integer $w width
|
|
|
|
* @param integer $h height
|
|
|
|
* @return mixed
|
|
|
|
*/
|
2017-12-07 14:56:11 +01:00
|
|
|
public function crop($max, $x, $y, $w, $h)
|
2017-11-29 18:17:12 +01:00
|
|
|
{
|
|
|
|
if (!$this->isValid()) {
|
2016-11-04 16:44:49 +01:00
|
|
|
return false;
|
|
|
|
}
|
2012-07-21 17:17:19 +02:00
|
|
|
|
2017-11-29 18:17:12 +01:00
|
|
|
if ($this->isImagick()) {
|
2012-10-09 17:35:32 +02:00
|
|
|
$this->image->setFirstIterator();
|
|
|
|
do {
|
|
|
|
$this->image->cropImage($w, $h, $x, $y);
|
2016-11-04 16:44:49 +01:00
|
|
|
/*
|
2012-10-09 17:35:32 +02:00
|
|
|
* We need to remove the canva,
|
|
|
|
* or the image is not resized to the crop:
|
|
|
|
* http://php.net/manual/en/imagick.cropimage.php#97232
|
|
|
|
*/
|
|
|
|
$this->image->setImagePage(0, 0, 0, 0);
|
|
|
|
} while ($this->image->nextImage());
|
2017-12-07 14:56:11 +01:00
|
|
|
return $this->scaleDown($max);
|
2012-10-09 17:35:32 +02:00
|
|
|
}
|
2012-07-22 13:43:46 +02:00
|
|
|
|
2016-11-04 19:26:28 +01:00
|
|
|
$dest = imagecreatetruecolor($max, $max);
|
2016-11-04 16:44:49 +01:00
|
|
|
imagealphablending($dest, false);
|
|
|
|
imagesavealpha($dest, true);
|
|
|
|
if ($this->type=='image/png') {
|
|
|
|
imagefill($dest, 0, 0, imagecolorallocatealpha($dest, 0, 0, 0, 127)); // fill with alpha
|
|
|
|
}
|
|
|
|
imagecopyresampled($dest, $this->image, 0, 0, $x, $y, $max, $max, $w, $h);
|
|
|
|
if ($this->image) {
|
|
|
|
imagedestroy($this->image);
|
|
|
|
}
|
|
|
|
$this->image = $dest;
|
|
|
|
$this->width = imagesx($this->image);
|
|
|
|
$this->height = imagesy($this->image);
|
|
|
|
}
|
2012-07-21 17:17:19 +02:00
|
|
|
|
2017-11-29 18:17:12 +01:00
|
|
|
/**
|
|
|
|
* @param string $path file path
|
|
|
|
* @return mixed
|
2019-01-06 22:06:53 +01:00
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
2017-11-29 18:17:12 +01:00
|
|
|
*/
|
2017-12-07 14:56:11 +01:00
|
|
|
public function saveToFilePath($path)
|
2017-11-29 18:17:12 +01:00
|
|
|
{
|
|
|
|
if (!$this->isValid()) {
|
2016-11-04 16:44:49 +01:00
|
|
|
return false;
|
|
|
|
}
|
2012-07-21 17:17:19 +02:00
|
|
|
|
2017-12-07 14:56:11 +01:00
|
|
|
$string = $this->asString();
|
2015-03-07 21:07:26 +01:00
|
|
|
|
2016-11-04 16:44:49 +01:00
|
|
|
$stamp1 = microtime(true);
|
|
|
|
file_put_contents($path, $string);
|
2019-12-15 23:50:35 +01:00
|
|
|
DI::profiler()->saveTimestamp($stamp1, "file", System::callstack());
|
2016-11-04 16:44:49 +01:00
|
|
|
}
|
2012-07-21 17:17:19 +02:00
|
|
|
|
2017-12-07 14:56:11 +01:00
|
|
|
/**
|
|
|
|
* @brief Magic method allowing string casting of an Image object
|
|
|
|
*
|
|
|
|
* Ex: $data = $Image->asString();
|
|
|
|
* can be replaced by
|
|
|
|
* $data = (string) $Image;
|
|
|
|
*
|
|
|
|
* @return string
|
2019-01-06 22:06:53 +01:00
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
2017-12-07 14:56:11 +01:00
|
|
|
*/
|
|
|
|
public function __toString() {
|
|
|
|
return $this->asString();
|
|
|
|
}
|
|
|
|
|
2017-11-29 18:17:12 +01:00
|
|
|
/**
|
|
|
|
* @return mixed
|
2019-01-06 22:06:53 +01:00
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
2017-11-29 18:17:12 +01:00
|
|
|
*/
|
2017-12-07 14:56:11 +01:00
|
|
|
public function asString()
|
2017-11-29 18:17:12 +01:00
|
|
|
{
|
|
|
|
if (!$this->isValid()) {
|
2016-11-04 16:44:49 +01:00
|
|
|
return false;
|
|
|
|
}
|
2014-06-16 21:49:45 +02:00
|
|
|
|
2017-11-29 18:17:12 +01:00
|
|
|
if ($this->isImagick()) {
|
2016-11-04 16:44:49 +01:00
|
|
|
/* Clean it */
|
|
|
|
$this->image = $this->image->deconstructImages();
|
|
|
|
$string = $this->image->getImagesBlob();
|
|
|
|
return $string;
|
|
|
|
}
|
2012-07-21 17:17:19 +02:00
|
|
|
|
2016-11-04 16:44:49 +01:00
|
|
|
ob_start();
|
2012-07-21 17:17:19 +02:00
|
|
|
|
2016-11-04 16:44:49 +01:00
|
|
|
// Enable interlacing
|
|
|
|
imageinterlace($this->image, true);
|
2012-07-21 17:17:19 +02:00
|
|
|
|
2017-11-29 18:17:12 +01:00
|
|
|
switch ($this->getType()) {
|
2016-11-04 16:44:49 +01:00
|
|
|
case "image/png":
|
2017-11-07 03:22:52 +01:00
|
|
|
$quality = Config::get('system', 'png_quality');
|
2016-11-04 19:26:28 +01:00
|
|
|
if ((!$quality) || ($quality > 9)) {
|
2016-11-04 16:44:49 +01:00
|
|
|
$quality = PNG_QUALITY;
|
|
|
|
}
|
2016-11-04 19:26:28 +01:00
|
|
|
imagepng($this->image, null, $quality);
|
2016-11-04 16:44:49 +01:00
|
|
|
break;
|
|
|
|
case "image/jpeg":
|
2017-11-07 03:22:52 +01:00
|
|
|
$quality = Config::get('system', 'jpeg_quality');
|
2016-11-04 19:26:28 +01:00
|
|
|
if ((!$quality) || ($quality > 100)) {
|
2016-11-04 16:44:49 +01:00
|
|
|
$quality = JPEG_QUALITY;
|
|
|
|
}
|
2016-11-04 19:26:28 +01:00
|
|
|
imagejpeg($this->image, null, $quality);
|
2016-11-04 16:44:49 +01:00
|
|
|
}
|
|
|
|
$string = ob_get_contents();
|
|
|
|
ob_end_clean();
|
2012-07-21 17:17:19 +02:00
|
|
|
|
2016-11-04 16:44:49 +01:00
|
|
|
return $string;
|
|
|
|
}
|
2012-07-21 17:17:19 +02:00
|
|
|
|
2019-10-18 03:26:15 +02:00
|
|
|
/**
|
|
|
|
* @brief supported mimetypes and corresponding file extensions
|
|
|
|
* @return array
|
|
|
|
* @deprecated in version 2019.12 please use Util\Images::supportedTypes() instead.
|
|
|
|
*/
|
|
|
|
public static function supportedTypes()
|
|
|
|
{
|
|
|
|
return Images::supportedTypes();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Maps Mime types to Imagick formats
|
|
|
|
* @return array With with image formats (mime type as key)
|
|
|
|
* @deprecated in version 2019.12 please use Util\Images::getFormatsMap() instead.
|
|
|
|
*/
|
|
|
|
public static function getFormatsMap()
|
|
|
|
{
|
|
|
|
return Images::getFormatsMap();
|
|
|
|
}
|
|
|
|
|
2017-11-29 18:17:12 +01:00
|
|
|
/**
|
|
|
|
* Guess image mimetype from filename or from Content-Type header
|
|
|
|
*
|
|
|
|
* @param string $filename Image filename
|
|
|
|
* @param boolean $fromcurl Check Content-Type header from curl request
|
2019-01-06 22:06:53 +01:00
|
|
|
* @param string $header passed headers to take into account
|
2017-11-29 18:17:12 +01:00
|
|
|
*
|
2019-10-18 03:26:15 +02:00
|
|
|
* @return string|null
|
|
|
|
* @throws Exception
|
|
|
|
* @deprecated in version 2019.12 please use Util\Images::guessType() instead.
|
2017-11-29 18:17:12 +01:00
|
|
|
*/
|
2018-10-10 21:20:30 +02:00
|
|
|
public static function guessType($filename, $fromcurl = false, $header = '')
|
2017-11-29 18:17:12 +01:00
|
|
|
{
|
2019-10-18 03:26:15 +02:00
|
|
|
return Images::guessType($filename, $fromcurl, $header);
|
2014-06-16 21:49:45 +02:00
|
|
|
}
|
2012-07-21 17:17:19 +02:00
|
|
|
|
2017-11-29 18:17:12 +01:00
|
|
|
/**
|
|
|
|
* @param string $url url
|
2019-10-18 03:26:15 +02:00
|
|
|
* @return array
|
2019-01-06 22:06:53 +01:00
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
2019-10-18 03:26:15 +02:00
|
|
|
* @deprecated in version 2019.12 please use Util\Images::getInfoFromURLCached() instead.
|
2017-11-29 18:17:12 +01:00
|
|
|
*/
|
2017-11-30 19:51:04 +01:00
|
|
|
public static function getInfoFromURL($url)
|
2017-11-29 18:17:12 +01:00
|
|
|
{
|
2019-10-18 03:26:15 +02:00
|
|
|
return Images::getInfoFromURLCached($url);
|
2016-11-04 16:44:49 +01:00
|
|
|
}
|
2014-06-16 21:49:45 +02:00
|
|
|
|
2017-11-29 18:17:12 +01:00
|
|
|
/**
|
|
|
|
* @param integer $width width
|
|
|
|
* @param integer $height height
|
|
|
|
* @param integer $max max
|
|
|
|
* @return array
|
2019-10-18 03:26:15 +02:00
|
|
|
* @deprecated in version 2019.12 please use Util\Images::getScalingDimensions() instead.
|
2017-11-29 18:17:12 +01:00
|
|
|
*/
|
2017-12-07 14:56:11 +01:00
|
|
|
public static function getScalingDimensions($width, $height, $max)
|
2017-11-29 18:17:12 +01:00
|
|
|
{
|
2019-10-18 03:26:15 +02:00
|
|
|
return Images::getScalingDimensions($width, $height, $max);
|
2014-06-16 21:49:45 +02:00
|
|
|
}
|
2014-07-15 08:49:41 +02:00
|
|
|
}
|