2010-07-01 23:48:07 +00:00
|
|
|
<?php
|
2016-11-04 15:44:49 +00:00
|
|
|
/**
|
2022-01-02 07:27:47 +00:00
|
|
|
* @copyright Copyright (C) 2010-2022, the Friendica project
|
2020-02-09 15:18:46 +00:00
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 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 Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
2016-11-04 15:44:49 +00:00
|
|
|
*/
|
2020-02-09 15:18:46 +00:00
|
|
|
|
2017-11-29 12:52:27 +00:00
|
|
|
namespace Friendica\Object;
|
2016-11-04 15:44:49 +00:00
|
|
|
|
2019-02-16 22:11:30 +00:00
|
|
|
use Exception;
|
2019-12-15 22:50:35 +00:00
|
|
|
use Friendica\DI;
|
2019-10-18 01:26:15 +00:00
|
|
|
use Friendica\Util\Images;
|
2017-11-29 22:29:11 +00:00
|
|
|
use Imagick;
|
2022-12-05 06:53:19 +00:00
|
|
|
use ImagickDraw;
|
2017-11-29 22:29:11 +00:00
|
|
|
use ImagickPixel;
|
2022-12-04 13:29:21 +00:00
|
|
|
use GDImage;
|
|
|
|
use kornrunner\Blurhash\Blurhash;
|
2017-04-30 04:07:00 +00:00
|
|
|
|
2017-11-29 17:17:12 +00:00
|
|
|
/**
|
2017-12-07 13:56:11 +00:00
|
|
|
* Class to handle images
|
2017-11-29 17:17:12 +00:00
|
|
|
*/
|
2017-12-07 13:56:11 +00:00
|
|
|
class Image
|
2017-11-29 17:17:12 +00:00
|
|
|
{
|
2022-12-04 13:29:21 +00:00
|
|
|
/** @var GDImage|Imagick|resource */
|
2016-11-04 15:44:49 +00: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 17:17:12 +00:00
|
|
|
/**
|
2020-01-19 06:05:23 +00:00
|
|
|
* Constructor
|
2022-06-21 21:34:14 +00:00
|
|
|
*
|
|
|
|
* @param string $data Image data
|
|
|
|
* @param string $type optional, default null
|
2019-01-06 21:06:53 +00:00
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
|
|
|
* @throws \ImagickException
|
2017-11-29 17:17:12 +00:00
|
|
|
*/
|
2022-06-21 21:34:14 +00:00
|
|
|
public function __construct(string $data, string $type = null)
|
2017-11-29 12:52:27 +00:00
|
|
|
{
|
2022-12-05 03:59:47 +00:00
|
|
|
$this->imagick = class_exists('Imagick');
|
2019-10-18 01:26:15 +00:00
|
|
|
$this->types = Images::supportedTypes();
|
2017-11-29 17:17:12 +00:00
|
|
|
if (!array_key_exists($type, $this->types)) {
|
2019-10-18 01:26:15 +00:00
|
|
|
$type = 'image/jpeg';
|
2016-11-04 15:44:49 +00:00
|
|
|
}
|
|
|
|
$this->type = $type;
|
2012-07-21 15:17:19 +00:00
|
|
|
|
2022-12-05 06:53:19 +00:00
|
|
|
if ($this->isImagick() && (empty($data) || $this->loadData($data))) {
|
2022-12-20 06:22:11 +00:00
|
|
|
$this->valid = !empty($data);
|
2022-06-21 21:34:14 +00:00
|
|
|
return;
|
2016-11-04 18:26:28 +00:00
|
|
|
} else {
|
|
|
|
// Failed to load with Imagick, fallback
|
|
|
|
$this->imagick = false;
|
|
|
|
}
|
2022-06-21 21:34:14 +00:00
|
|
|
$this->loadData($data);
|
2014-06-16 19:49:45 +00:00
|
|
|
}
|
|
|
|
|
2017-11-29 17:17:12 +00:00
|
|
|
/**
|
2020-01-19 06:05:23 +00:00
|
|
|
* Destructor
|
2020-01-19 09:51:37 +00:00
|
|
|
*
|
2017-11-29 17:17:12 +00:00
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function __destruct()
|
|
|
|
{
|
2016-11-04 15:44:49 +00:00
|
|
|
if ($this->image) {
|
2017-11-29 17:17:12 +00:00
|
|
|
if ($this->isImagick()) {
|
2016-11-04 15:44:49 +00:00
|
|
|
$this->image->clear();
|
|
|
|
$this->image->destroy();
|
|
|
|
return;
|
|
|
|
}
|
2017-05-01 20:16:22 +00:00
|
|
|
if (is_resource($this->image)) {
|
2017-05-01 14:38:39 +00:00
|
|
|
imagedestroy($this->image);
|
2017-05-01 20:16:22 +00:00
|
|
|
}
|
2016-11-04 15:44:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-29 17:17:12 +00:00
|
|
|
/**
|
|
|
|
* @return boolean
|
|
|
|
*/
|
|
|
|
public function isImagick()
|
2017-11-29 12:52:27 +00:00
|
|
|
{
|
2016-11-04 15:44:49 +00:00
|
|
|
return $this->imagick;
|
2014-06-16 19:49:45 +00:00
|
|
|
}
|
2012-09-12 09:55:09 +00:00
|
|
|
|
2017-11-29 17:17:12 +00:00
|
|
|
/**
|
2022-06-21 21:34:14 +00:00
|
|
|
* Loads image data into handler class
|
|
|
|
*
|
|
|
|
* @param string $data Image data
|
|
|
|
* @return boolean Success
|
2019-01-06 21:06:53 +00:00
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
|
|
|
* @throws \ImagickException
|
2017-11-29 17:17:12 +00:00
|
|
|
*/
|
2022-06-21 21:34:14 +00:00
|
|
|
private function loadData(string $data): bool
|
2017-11-29 17:17:12 +00:00
|
|
|
{
|
|
|
|
if ($this->isImagick()) {
|
2016-11-04 18:26:28 +00:00
|
|
|
$this->image = new Imagick();
|
2016-11-04 15:44:49 +00:00
|
|
|
try {
|
2012-09-12 09:55:09 +00:00
|
|
|
$this->image->readImageBlob($data);
|
2016-11-04 18:26:28 +00:00
|
|
|
} catch (Exception $e) {
|
2012-09-12 09:55:09 +00:00
|
|
|
// Imagick couldn't use the data
|
|
|
|
return false;
|
|
|
|
}
|
2012-07-22 11:43:46 +00:00
|
|
|
|
2016-11-04 15:44:49 +00:00
|
|
|
/*
|
|
|
|
* Setup the image to the format it will be saved to
|
|
|
|
*/
|
2019-10-18 01:26:15 +00:00
|
|
|
$map = Images::getFormatsMap();
|
2017-12-17 20:35:07 +00:00
|
|
|
$format = $map[$this->type];
|
2016-11-04 15:44:49 +00:00
|
|
|
$this->image->setFormat($format);
|
|
|
|
|
|
|
|
// Always coalesce, if it is not a multi-frame image it won't hurt anyway
|
2020-10-02 20:58:14 +00:00
|
|
|
try {
|
|
|
|
$this->image = $this->image->coalesceImages();
|
|
|
|
} catch (Exception $e) {
|
|
|
|
return false;
|
|
|
|
}
|
2016-11-04 15:44:49 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* setup the compression here, so we'll do it only once
|
|
|
|
*/
|
2017-11-29 17:17:12 +00:00
|
|
|
switch ($this->getType()) {
|
2022-06-21 21:34:14 +00:00
|
|
|
case 'image/png':
|
2020-01-19 20:21:13 +00:00
|
|
|
$quality = DI::config()->get('system', 'png_quality');
|
2016-11-04 15:44:49 +00:00
|
|
|
/*
|
|
|
|
* 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;
|
2022-06-21 21:34:14 +00:00
|
|
|
|
|
|
|
case 'image/jpg':
|
|
|
|
case 'image/jpeg':
|
2020-01-19 20:21:13 +00:00
|
|
|
$quality = DI::config()->get('system', 'jpeg_quality');
|
2016-11-04 15:44:49 +00:00
|
|
|
$this->image->setCompressionQuality($quality);
|
|
|
|
}
|
2012-07-21 15:17:19 +00:00
|
|
|
|
2012-10-09 15:35:32 +00:00
|
|
|
$this->width = $this->image->getImageWidth();
|
2012-09-12 09:55:09 +00:00
|
|
|
$this->height = $this->image->getImageHeight();
|
2022-12-20 06:22:11 +00:00
|
|
|
$this->valid = !empty($this->image);
|
2012-07-21 15:17:19 +00:00
|
|
|
|
2022-12-20 06:22:11 +00:00
|
|
|
return $this->valid;
|
2012-09-12 09:55:09 +00:00
|
|
|
}
|
2012-07-22 11:43:46 +00:00
|
|
|
|
2012-09-12 09:55:09 +00:00
|
|
|
$this->valid = false;
|
2022-05-21 16:44:03 +00:00
|
|
|
try {
|
|
|
|
$this->image = @imagecreatefromstring($data);
|
|
|
|
if ($this->image !== false) {
|
|
|
|
$this->width = imagesx($this->image);
|
|
|
|
$this->height = imagesy($this->image);
|
|
|
|
$this->valid = true;
|
|
|
|
imagealphablending($this->image, false);
|
|
|
|
imagesavealpha($this->image, true);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
} catch (\Throwable $error) {
|
|
|
|
/** @see https://github.com/php/doc-en/commit/d09a881a8e9059d11e756ee59d75bf404d6941ed */
|
|
|
|
if (strstr($error->getMessage(), "gd-webp cannot allocate temporary buffer")) {
|
2022-05-21 16:51:03 +00:00
|
|
|
DI::logger()->notice('Image is probably animated and therefore unsupported', ['error' => $error]);
|
2022-05-21 16:44:03 +00:00
|
|
|
} else {
|
|
|
|
DI::logger()->warning('Unexpected throwable.', ['error' => $error]);
|
|
|
|
}
|
2012-09-12 09:55:09 +00:00
|
|
|
}
|
2016-11-04 15:44:49 +00:00
|
|
|
|
2012-09-12 09:55:09 +00:00
|
|
|
return false;
|
|
|
|
}
|
2012-07-22 15:09:18 +00:00
|
|
|
|
2017-11-29 17:17:12 +00:00
|
|
|
/**
|
|
|
|
* @return boolean
|
|
|
|
*/
|
2022-06-21 21:34:14 +00:00
|
|
|
public function isValid(): bool
|
2017-11-29 17:17:12 +00:00
|
|
|
{
|
|
|
|
if ($this->isImagick()) {
|
2016-11-04 15:44:49 +00:00
|
|
|
return ($this->image !== false);
|
|
|
|
}
|
|
|
|
return $this->valid;
|
2014-06-16 19:49:45 +00:00
|
|
|
}
|
2012-07-21 15:17:19 +00:00
|
|
|
|
2017-11-29 17:17:12 +00:00
|
|
|
/**
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function getWidth()
|
|
|
|
{
|
|
|
|
if (!$this->isValid()) {
|
2016-11-04 15:44:49 +00:00
|
|
|
return false;
|
|
|
|
}
|
2012-07-21 15:17:19 +00:00
|
|
|
|
2016-11-04 15:44:49 +00:00
|
|
|
return $this->width;
|
|
|
|
}
|
2012-07-21 15:17:19 +00:00
|
|
|
|
2017-11-29 17:17:12 +00:00
|
|
|
/**
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function getHeight()
|
|
|
|
{
|
|
|
|
if (!$this->isValid()) {
|
2016-11-04 15:44:49 +00:00
|
|
|
return false;
|
|
|
|
}
|
2012-07-21 15:17:19 +00:00
|
|
|
|
2016-11-04 15:44:49 +00:00
|
|
|
return $this->height;
|
|
|
|
}
|
2012-07-21 15:17:19 +00:00
|
|
|
|
2017-11-29 17:17:12 +00:00
|
|
|
/**
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function getImage()
|
|
|
|
{
|
|
|
|
if (!$this->isValid()) {
|
2016-11-04 15:44:49 +00:00
|
|
|
return false;
|
|
|
|
}
|
2012-07-21 15:17:19 +00:00
|
|
|
|
2017-11-29 17:17:12 +00:00
|
|
|
if ($this->isImagick()) {
|
2021-04-12 12:37:11 +00:00
|
|
|
try {
|
|
|
|
/* Clean it */
|
|
|
|
$this->image = $this->image->deconstructImages();
|
|
|
|
return $this->image;
|
|
|
|
} catch (Exception $e) {
|
|
|
|
return false;
|
|
|
|
}
|
2016-11-04 15:44:49 +00:00
|
|
|
}
|
|
|
|
return $this->image;
|
|
|
|
}
|
2012-07-22 11:43:46 +00:00
|
|
|
|
2017-11-29 17:17:12 +00:00
|
|
|
/**
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function getType()
|
|
|
|
{
|
|
|
|
if (!$this->isValid()) {
|
2016-11-04 15:44:49 +00:00
|
|
|
return false;
|
|
|
|
}
|
2012-07-22 11:43:46 +00:00
|
|
|
|
2016-11-04 15:44:49 +00:00
|
|
|
return $this->type;
|
|
|
|
}
|
2012-07-22 11:43:46 +00:00
|
|
|
|
2017-11-29 17:17:12 +00:00
|
|
|
/**
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function getExt()
|
|
|
|
{
|
|
|
|
if (!$this->isValid()) {
|
2016-11-04 15:44:49 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->types[$this->getType()];
|
|
|
|
}
|
|
|
|
|
2017-11-29 17:17:12 +00:00
|
|
|
/**
|
2022-06-21 21:34:14 +00:00
|
|
|
* Scales image down
|
|
|
|
*
|
2017-11-29 17:17:12 +00:00
|
|
|
* @param integer $max max dimension
|
|
|
|
* @return mixed
|
|
|
|
*/
|
2022-06-21 21:34:14 +00:00
|
|
|
public function scaleDown(int $max)
|
2017-11-29 17:17:12 +00:00
|
|
|
{
|
|
|
|
if (!$this->isValid()) {
|
2016-11-04 15:44:49 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$width = $this->getWidth();
|
|
|
|
$height = $this->getHeight();
|
|
|
|
|
|
|
|
if ((! $width)|| (! $height)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-12-28 02:30:56 +00:00
|
|
|
$scale = Images::getScalingDimensions($width, $height,$max);
|
|
|
|
return $this->scale($scale['width'], $scale['height']);
|
2014-06-16 19:49:45 +00:00
|
|
|
}
|
|
|
|
|
2017-11-29 17:17:12 +00:00
|
|
|
/**
|
2022-06-21 21:34:14 +00:00
|
|
|
* Rotates image
|
|
|
|
*
|
2017-11-29 17:17:12 +00:00
|
|
|
* @param integer $degrees degrees to rotate image
|
|
|
|
* @return mixed
|
|
|
|
*/
|
2022-06-21 21:34:14 +00:00
|
|
|
public function rotate(int $degrees)
|
2017-11-29 17:17:12 +00:00
|
|
|
{
|
|
|
|
if (!$this->isValid()) {
|
2016-11-04 15:44:49 +00:00
|
|
|
return false;
|
|
|
|
}
|
2014-06-16 19:49:45 +00:00
|
|
|
|
2017-11-29 17:17:12 +00:00
|
|
|
if ($this->isImagick()) {
|
2016-11-04 15:44:49 +00:00
|
|
|
$this->image->setFirstIterator();
|
|
|
|
do {
|
|
|
|
$this->image->rotateImage(new ImagickPixel(), -$degrees); // ImageMagick rotates in the opposite direction of imagerotate()
|
|
|
|
} while ($this->image->nextImage());
|
2022-12-20 06:22:11 +00:00
|
|
|
|
|
|
|
$this->width = $this->image->getImageWidth();
|
|
|
|
$this->height = $this->image->getImageHeight();
|
2016-11-04 15:44:49 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-05-01 14:38:39 +00:00
|
|
|
// if script dies at this point check memory_limit setting in php.ini
|
2017-11-29 17:17:12 +00:00
|
|
|
$this->image = imagerotate($this->image, $degrees, 0);
|
2016-11-04 15:44:49 +00:00
|
|
|
$this->width = imagesx($this->image);
|
|
|
|
$this->height = imagesy($this->image);
|
2014-06-16 19:49:45 +00:00
|
|
|
}
|
2016-11-04 15:44:49 +00:00
|
|
|
|
2017-11-29 17:17:12 +00:00
|
|
|
/**
|
2022-06-21 21:34:14 +00:00
|
|
|
* Flips image
|
|
|
|
*
|
2017-11-29 17:17:12 +00:00
|
|
|
* @param boolean $horiz optional, default true
|
|
|
|
* @param boolean $vert optional, default false
|
|
|
|
* @return mixed
|
|
|
|
*/
|
2022-06-21 21:34:14 +00:00
|
|
|
public function flip(bool $horiz = true, bool $vert = false)
|
2017-11-29 17:17:12 +00:00
|
|
|
{
|
|
|
|
if (!$this->isValid()) {
|
2016-11-04 15:44:49 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-11-29 17:17:12 +00:00
|
|
|
if ($this->isImagick()) {
|
2016-11-04 15:44:49 +00: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-29 22:19:54 +00:00
|
|
|
}
|
2012-07-21 15:17:19 +00:00
|
|
|
|
2017-11-29 17:17:12 +00:00
|
|
|
/**
|
2022-06-21 21:34:14 +00:00
|
|
|
* Fixes orientation and maybe returns EXIF data (?)
|
|
|
|
*
|
|
|
|
* @param string $filename Filename
|
2017-11-29 17:17:12 +00:00
|
|
|
* @return mixed
|
|
|
|
*/
|
2022-06-21 21:34:14 +00:00
|
|
|
public function orient(string $filename)
|
2017-11-29 17:17:12 +00:00
|
|
|
{
|
|
|
|
if ($this->isImagick()) {
|
2016-11-04 15:44:49 +00:00
|
|
|
// based off comment on http://php.net/manual/en/imagick.getimageorientation.php
|
|
|
|
$orientation = $this->image->getImageOrientation();
|
|
|
|
switch ($orientation) {
|
2017-11-29 22:29:11 +00:00
|
|
|
case Imagick::ORIENTATION_BOTTOMRIGHT:
|
2017-11-29 17:17:12 +00:00
|
|
|
$this->image->rotateimage("#000", 180);
|
|
|
|
break;
|
2017-11-29 22:29:11 +00:00
|
|
|
case Imagick::ORIENTATION_RIGHTTOP:
|
2017-11-29 17:17:12 +00:00
|
|
|
$this->image->rotateimage("#000", 90);
|
|
|
|
break;
|
2017-11-29 22:29:11 +00:00
|
|
|
case Imagick::ORIENTATION_LEFTBOTTOM:
|
2017-11-29 17:17:12 +00:00
|
|
|
$this->image->rotateimage("#000", -90);
|
|
|
|
break;
|
2016-11-04 15:44:49 +00:00
|
|
|
}
|
2012-07-21 15:17:19 +00:00
|
|
|
|
2017-11-29 22:29:11 +00:00
|
|
|
$this->image->setImageOrientation(Imagick::ORIENTATION_TOPLEFT);
|
2016-11-04 15:44:49 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
// based off comment on http://php.net/manual/en/function.imagerotate.php
|
|
|
|
|
2017-11-29 17:17:12 +00:00
|
|
|
if (!$this->isValid()) {
|
2016-11-04 15:44:49 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-11-04 18:26:28 +00:00
|
|
|
if ((!function_exists('exif_read_data')) || ($this->getType() !== 'image/jpeg')) {
|
2016-11-04 15:44:49 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-11-29 17:17:12 +00:00
|
|
|
$exif = @exif_read_data($filename, null, true);
|
2016-11-04 18:26:28 +00:00
|
|
|
if (!$exif) {
|
2016-11-04 15:44:49 +00:00
|
|
|
return;
|
|
|
|
}
|
2012-09-05 11:02:30 +00:00
|
|
|
|
2019-03-09 03:09:41 +00:00
|
|
|
$ort = isset($exif['IFD0']['Orientation']) ? $exif['IFD0']['Orientation'] : 1;
|
2012-09-05 11:02:30 +00:00
|
|
|
|
2017-11-29 17:17:12 +00:00
|
|
|
switch ($ort) {
|
2016-11-04 15:44:49 +00:00
|
|
|
case 1: // nothing
|
|
|
|
break;
|
2012-07-21 15:17:19 +00:00
|
|
|
|
2016-11-04 15:44:49 +00:00
|
|
|
case 2: // horizontal flip
|
|
|
|
$this->flip();
|
|
|
|
break;
|
2012-07-21 15:17:19 +00:00
|
|
|
|
2016-11-04 15:44:49 +00:00
|
|
|
case 3: // 180 rotate left
|
|
|
|
$this->rotate(180);
|
|
|
|
break;
|
2012-07-21 15:17:19 +00:00
|
|
|
|
2016-11-04 15:44:49 +00:00
|
|
|
case 4: // vertical flip
|
|
|
|
$this->flip(false, true);
|
|
|
|
break;
|
2012-07-21 15:17:19 +00:00
|
|
|
|
2016-11-04 15:44:49 +00:00
|
|
|
case 5: // vertical flip + 90 rotate right
|
|
|
|
$this->flip(false, true);
|
|
|
|
$this->rotate(-90);
|
|
|
|
break;
|
2012-07-21 15:17:19 +00:00
|
|
|
|
2016-11-04 15:44:49 +00:00
|
|
|
case 6: // 90 rotate right
|
|
|
|
$this->rotate(-90);
|
|
|
|
break;
|
2012-07-21 15:17:19 +00:00
|
|
|
|
2016-11-04 15:44:49 +00: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 15:17:19 +00:00
|
|
|
|
2016-11-04 15:44:49 +00:00
|
|
|
return $exif;
|
2014-06-16 19:49:45 +00:00
|
|
|
}
|
2015-09-29 22:19:54 +00:00
|
|
|
|
2017-11-29 17:17:12 +00:00
|
|
|
/**
|
2022-06-21 21:34:14 +00:00
|
|
|
* Rescales image to minimum size
|
|
|
|
*
|
|
|
|
* @param integer $min Minimum dimension
|
2017-11-29 17:17:12 +00:00
|
|
|
* @return mixed
|
|
|
|
*/
|
2022-06-21 21:34:14 +00:00
|
|
|
public function scaleUp(int $min)
|
2017-11-29 17:17:12 +00:00
|
|
|
{
|
|
|
|
if (!$this->isValid()) {
|
2016-11-04 15:44:49 +00:00
|
|
|
return false;
|
|
|
|
}
|
2012-07-21 15:17:19 +00:00
|
|
|
|
2016-11-04 15:44:49 +00:00
|
|
|
$width = $this->getWidth();
|
|
|
|
$height = $this->getHeight();
|
2014-06-16 19:49:45 +00:00
|
|
|
|
2016-11-04 18:26:28 +00:00
|
|
|
if ((!$width)|| (!$height)) {
|
2016-11-04 15:44:49 +00:00
|
|
|
return false;
|
|
|
|
}
|
2014-06-16 19:49:45 +00:00
|
|
|
|
2016-11-04 15:44:49 +00:00
|
|
|
if ($width < $min && $height < $min) {
|
|
|
|
if ($width > $height) {
|
|
|
|
$dest_width = $min;
|
2016-11-04 18:26:28 +00:00
|
|
|
$dest_height = intval(($height * $min) / $width);
|
2016-11-04 15:44:49 +00:00
|
|
|
} else {
|
2016-11-04 18:26:28 +00:00
|
|
|
$dest_width = intval(($width * $min) / $height);
|
2016-11-04 15:44:49 +00:00
|
|
|
$dest_height = $min;
|
|
|
|
}
|
|
|
|
} else {
|
2016-11-04 18:26:28 +00:00
|
|
|
if ($width < $min) {
|
2016-11-04 15:44:49 +00:00
|
|
|
$dest_width = $min;
|
2016-11-04 18:26:28 +00:00
|
|
|
$dest_height = intval(($height * $min) / $width);
|
2016-11-04 15:44:49 +00:00
|
|
|
} else {
|
2016-11-04 18:26:28 +00:00
|
|
|
if ($height < $min) {
|
|
|
|
$dest_width = intval(($width * $min) / $height);
|
2016-11-04 15:44:49 +00:00
|
|
|
$dest_height = $min;
|
|
|
|
} else {
|
|
|
|
$dest_width = $width;
|
|
|
|
$dest_height = $height;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-06-16 19:49:45 +00:00
|
|
|
|
2017-12-17 20:35:07 +00:00
|
|
|
return $this->scale($dest_width, $dest_height);
|
2014-06-16 19:49:45 +00:00
|
|
|
}
|
|
|
|
|
2017-11-29 17:17:12 +00:00
|
|
|
/**
|
2022-06-21 21:34:14 +00:00
|
|
|
* Scales image to square
|
|
|
|
*
|
|
|
|
* @param integer $dim Dimension
|
2017-11-29 17:17:12 +00:00
|
|
|
* @return mixed
|
|
|
|
*/
|
2022-06-21 21:34:14 +00:00
|
|
|
public function scaleToSquare(int $dim)
|
2017-11-29 17:17:12 +00:00
|
|
|
{
|
|
|
|
if (!$this->isValid()) {
|
2016-11-04 15:44:49 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-12-17 20:35:07 +00:00
|
|
|
return $this->scale($dim, $dim);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-01-19 06:05:23 +00:00
|
|
|
* Scale image to target dimensions
|
2017-12-17 20:35:07 +00:00
|
|
|
*
|
2022-06-21 21:34:14 +00:00
|
|
|
* @param int $dest_width Destination width
|
|
|
|
* @param int $dest_height Destination height
|
|
|
|
* @return boolean Success
|
2017-12-17 20:35:07 +00:00
|
|
|
*/
|
2022-06-21 21:34:14 +00:00
|
|
|
private function scale(int $dest_width, int $dest_height): bool
|
2017-12-17 20:35:07 +00:00
|
|
|
{
|
|
|
|
if (!$this->isValid()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-11-29 17:17:12 +00:00
|
|
|
if ($this->isImagick()) {
|
2017-12-17 20:35:07 +00: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 15:44:49 +00:00
|
|
|
$this->image->setFirstIterator();
|
|
|
|
do {
|
2017-12-17 20:35:07 +00:00
|
|
|
// FIXME - implement horizontal bias for scaling as in following GD functions
|
|
|
|
// to allow very tall images to be constrained only horizontally.
|
2021-03-23 20:01:32 +00:00
|
|
|
try {
|
|
|
|
$this->image->scaleImage($dest_width, $dest_height);
|
|
|
|
} catch (Exception $e) {
|
|
|
|
// Imagick couldn't use the data
|
|
|
|
return false;
|
|
|
|
}
|
2016-11-04 15:44:49 +00:00
|
|
|
} while ($this->image->nextImage());
|
|
|
|
|
2017-12-17 20:35:07 +00:00
|
|
|
$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 15:44:49 +00:00
|
|
|
}
|
2017-12-17 20:35:07 +00:00
|
|
|
|
|
|
|
return true;
|
2016-11-04 15:44:49 +00:00
|
|
|
}
|
|
|
|
|
2021-03-26 06:56:08 +00:00
|
|
|
/**
|
|
|
|
* Convert a GIF to a PNG to make it static
|
2022-06-21 21:34:14 +00:00
|
|
|
*
|
|
|
|
* @return void
|
2021-03-26 06:56:08 +00:00
|
|
|
*/
|
|
|
|
public function toStatic()
|
|
|
|
{
|
|
|
|
if ($this->type != 'image/gif') {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($this->isImagick()) {
|
|
|
|
$this->type == 'image/png';
|
|
|
|
$this->image->setFormat('png');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-29 17:17:12 +00:00
|
|
|
/**
|
2022-06-21 21:34:14 +00:00
|
|
|
* Crops image
|
|
|
|
*
|
2017-11-29 17:17:12 +00: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
|
|
|
|
*/
|
2022-06-21 21:34:14 +00:00
|
|
|
public function crop(int $max, int $x, int $y, int $w, int $h)
|
2017-11-29 17:17:12 +00:00
|
|
|
{
|
|
|
|
if (!$this->isValid()) {
|
2016-11-04 15:44:49 +00:00
|
|
|
return false;
|
|
|
|
}
|
2012-07-21 15:17:19 +00:00
|
|
|
|
2017-11-29 17:17:12 +00:00
|
|
|
if ($this->isImagick()) {
|
2012-10-09 15:35:32 +00:00
|
|
|
$this->image->setFirstIterator();
|
|
|
|
do {
|
|
|
|
$this->image->cropImage($w, $h, $x, $y);
|
2016-11-04 15:44:49 +00:00
|
|
|
/*
|
2012-10-09 15:35:32 +00: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 13:56:11 +00:00
|
|
|
return $this->scaleDown($max);
|
2012-10-09 15:35:32 +00:00
|
|
|
}
|
2012-07-22 11:43:46 +00:00
|
|
|
|
2016-11-04 18:26:28 +00:00
|
|
|
$dest = imagecreatetruecolor($max, $max);
|
2016-11-04 15:44:49 +00: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);
|
|
|
|
}
|
2022-12-20 06:22:11 +00:00
|
|
|
$this->image = $dest;
|
2016-11-04 15:44:49 +00:00
|
|
|
$this->width = imagesx($this->image);
|
|
|
|
$this->height = imagesy($this->image);
|
2022-06-21 21:34:14 +00:00
|
|
|
|
|
|
|
// All successful
|
|
|
|
return true;
|
2016-11-04 15:44:49 +00:00
|
|
|
}
|
2012-07-21 15:17:19 +00:00
|
|
|
|
2017-12-07 13:56:11 +00:00
|
|
|
/**
|
2020-01-19 06:05:23 +00:00
|
|
|
* Magic method allowing string casting of an Image object
|
2017-12-07 13:56:11 +00:00
|
|
|
*
|
|
|
|
* Ex: $data = $Image->asString();
|
|
|
|
* can be replaced by
|
|
|
|
* $data = (string) $Image;
|
|
|
|
*
|
|
|
|
* @return string
|
2019-01-06 21:06:53 +00:00
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
2017-12-07 13:56:11 +00:00
|
|
|
*/
|
2022-06-21 21:34:14 +00:00
|
|
|
public function __toString(): string
|
|
|
|
{
|
|
|
|
return (string) $this->asString();
|
2017-12-07 13:56:11 +00:00
|
|
|
}
|
|
|
|
|
2017-11-29 17:17:12 +00:00
|
|
|
/**
|
2022-06-21 21:34:14 +00:00
|
|
|
* Returns image as string or false on failure
|
|
|
|
*
|
2017-11-29 17:17:12 +00:00
|
|
|
* @return mixed
|
2019-01-06 21:06:53 +00:00
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
2017-11-29 17:17:12 +00:00
|
|
|
*/
|
2017-12-07 13:56:11 +00:00
|
|
|
public function asString()
|
2017-11-29 17:17:12 +00:00
|
|
|
{
|
|
|
|
if (!$this->isValid()) {
|
2016-11-04 15:44:49 +00:00
|
|
|
return false;
|
|
|
|
}
|
2014-06-16 19:49:45 +00:00
|
|
|
|
2017-11-29 17:17:12 +00:00
|
|
|
if ($this->isImagick()) {
|
2021-04-12 12:37:11 +00:00
|
|
|
try {
|
|
|
|
/* Clean it */
|
|
|
|
$this->image = $this->image->deconstructImages();
|
2022-12-04 13:29:21 +00:00
|
|
|
return $this->image->getImagesBlob();
|
2021-04-12 12:37:11 +00:00
|
|
|
} catch (Exception $e) {
|
|
|
|
return false;
|
|
|
|
}
|
2016-11-04 15:44:49 +00:00
|
|
|
}
|
2012-07-21 15:17:19 +00:00
|
|
|
|
2022-12-04 13:29:21 +00:00
|
|
|
$stream = fopen('php://memory','r+');
|
2012-07-21 15:17:19 +00:00
|
|
|
|
2016-11-04 15:44:49 +00:00
|
|
|
// Enable interlacing
|
|
|
|
imageinterlace($this->image, true);
|
2012-07-21 15:17:19 +00:00
|
|
|
|
2017-11-29 17:17:12 +00:00
|
|
|
switch ($this->getType()) {
|
2022-06-21 21:34:14 +00:00
|
|
|
case 'image/png':
|
2020-01-19 20:21:13 +00:00
|
|
|
$quality = DI::config()->get('system', 'png_quality');
|
2022-12-04 13:29:21 +00:00
|
|
|
imagepng($this->image, $stream, $quality);
|
2016-11-04 15:44:49 +00:00
|
|
|
break;
|
2022-06-21 21:34:14 +00:00
|
|
|
|
|
|
|
case 'image/jpeg':
|
|
|
|
case 'image/jpg':
|
2020-01-19 20:21:13 +00:00
|
|
|
$quality = DI::config()->get('system', 'jpeg_quality');
|
2022-12-04 13:29:21 +00:00
|
|
|
imagejpeg($this->image, $stream, $quality);
|
2022-06-21 21:34:14 +00:00
|
|
|
break;
|
2016-11-04 15:44:49 +00:00
|
|
|
}
|
2022-12-04 13:29:21 +00:00
|
|
|
rewind($stream);
|
|
|
|
return stream_get_contents($stream);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a blurhash out of a given image string
|
|
|
|
*
|
|
|
|
* @param string $img_str
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getBlurHash(): string
|
|
|
|
{
|
2022-12-05 20:38:21 +00:00
|
|
|
$image = New Image($this->asString());
|
2022-12-20 06:22:11 +00:00
|
|
|
if (empty($image) || !$this->isValid()) {
|
2022-12-08 05:49:25 +00:00
|
|
|
return '';
|
|
|
|
}
|
2022-12-05 20:38:21 +00:00
|
|
|
|
2022-12-20 22:32:24 +00:00
|
|
|
$width = $image->getWidth();
|
2022-12-05 20:38:21 +00:00
|
|
|
$height = $image->getHeight();
|
2022-12-04 13:29:21 +00:00
|
|
|
|
|
|
|
if (max($width, $height) > 90) {
|
2022-12-05 20:38:21 +00:00
|
|
|
$image->scaleDown(90);
|
2022-12-20 22:32:24 +00:00
|
|
|
$width = $image->getWidth();
|
2022-12-05 20:38:21 +00:00
|
|
|
$height = $image->getHeight();
|
2022-12-04 13:29:21 +00:00
|
|
|
}
|
|
|
|
|
2022-12-20 22:32:24 +00:00
|
|
|
if (empty($width) || empty($height)) {
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
2022-12-04 13:29:21 +00:00
|
|
|
$pixels = [];
|
|
|
|
for ($y = 0; $y < $height; ++$y) {
|
|
|
|
$row = [];
|
|
|
|
for ($x = 0; $x < $width; ++$x) {
|
2022-12-05 20:38:21 +00:00
|
|
|
if ($image->isImagick()) {
|
2022-12-08 05:49:25 +00:00
|
|
|
try {
|
|
|
|
$colors = $image->image->getImagePixelColor($x, $y)->getColor();
|
|
|
|
} catch (\Throwable $th) {
|
|
|
|
return '';
|
|
|
|
}
|
2022-12-05 06:53:19 +00:00
|
|
|
$row[] = [$colors['r'], $colors['g'], $colors['b']];
|
|
|
|
} else {
|
2022-12-05 20:38:21 +00:00
|
|
|
$index = imagecolorat($image->image, $x, $y);
|
|
|
|
$colors = @imagecolorsforindex($image->image, $index);
|
2022-12-05 06:53:19 +00:00
|
|
|
$row[] = [$colors['red'], $colors['green'], $colors['blue']];
|
|
|
|
}
|
2022-12-04 13:29:21 +00:00
|
|
|
}
|
|
|
|
$pixels[] = $row;
|
|
|
|
}
|
|
|
|
|
|
|
|
// The components define the amount of details (1 to 9).
|
|
|
|
$components_x = 9;
|
|
|
|
$components_y = 9;
|
|
|
|
|
|
|
|
return Blurhash::encode($pixels, $components_x, $components_y);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create an image out of a blurhash
|
|
|
|
*
|
|
|
|
* @param string $blurhash
|
|
|
|
* @param integer $width
|
|
|
|
* @param integer $height
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function getFromBlurHash(string $blurhash, int $width, int $height)
|
|
|
|
{
|
2022-12-04 14:58:53 +00:00
|
|
|
$scaled = Images::getScalingDimensions($width, $height, 90);
|
|
|
|
$pixels = Blurhash::decode($blurhash, $scaled['width'], $scaled['height']);
|
|
|
|
|
2022-12-05 06:53:19 +00:00
|
|
|
if ($this->isImagick()) {
|
|
|
|
$this->image = new Imagick();
|
|
|
|
$draw = new ImagickDraw();
|
|
|
|
$this->image->newImage($scaled['width'], $scaled['height'], '', 'png');
|
|
|
|
} else {
|
|
|
|
$this->image = imagecreatetruecolor($scaled['width'], $scaled['height']);
|
|
|
|
}
|
|
|
|
|
2022-12-04 14:58:53 +00:00
|
|
|
for ($y = 0; $y < $scaled['height']; ++$y) {
|
|
|
|
for ($x = 0; $x < $scaled['width']; ++$x) {
|
2022-12-04 13:29:21 +00:00
|
|
|
[$r, $g, $b] = $pixels[$y][$x];
|
2022-12-05 06:53:19 +00:00
|
|
|
if ($this->isImagick()) {
|
|
|
|
$draw->setFillColor("rgb($r, $g, $b)");
|
|
|
|
$draw->point($x, $y);
|
|
|
|
} else {
|
|
|
|
imagesetpixel($this->image, $x, $y, imagecolorallocate($this->image, $r, $g, $b));
|
|
|
|
}
|
2022-12-04 13:29:21 +00:00
|
|
|
}
|
|
|
|
}
|
2022-12-04 14:58:53 +00:00
|
|
|
|
2022-12-05 12:53:21 +00:00
|
|
|
if ($this->isImagick()) {
|
|
|
|
$this->image->drawImage($draw);
|
2022-12-20 06:22:11 +00:00
|
|
|
$this->width = $this->image->getImageWidth();
|
|
|
|
$this->height = $this->image->getImageHeight();
|
2022-12-05 12:53:21 +00:00
|
|
|
} else {
|
2022-12-05 06:53:19 +00:00
|
|
|
$this->width = imagesx($this->image);
|
|
|
|
$this->height = imagesy($this->image);
|
|
|
|
}
|
|
|
|
|
2022-12-20 06:22:11 +00:00
|
|
|
$this->valid = !empty($this->image);
|
2022-12-04 14:58:53 +00:00
|
|
|
|
|
|
|
$this->scaleUp(min($width, $height));
|
2016-11-04 15:44:49 +00:00
|
|
|
}
|
2014-07-15 06:49:41 +00:00
|
|
|
}
|