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
|
|
|
|
2017-04-30 06:07:00 +02:00
|
|
|
use Friendica\App;
|
2017-11-09 17:05:18 +01:00
|
|
|
use Friendica\Core\Cache;
|
2017-11-07 03:22:52 +01:00
|
|
|
use Friendica\Core\Config;
|
2018-01-22 15:54:13 +01:00
|
|
|
use Friendica\Core\L10n;
|
2018-10-29 22:20:46 +01:00
|
|
|
use Friendica\Core\Logger;
|
2017-08-26 08:04:21 +02:00
|
|
|
use Friendica\Core\System;
|
2018-07-21 14:40:21 +02:00
|
|
|
use Friendica\Database\DBA;
|
2017-12-07 14:56:11 +01:00
|
|
|
use Friendica\Model\Photo;
|
2018-01-27 05:09:48 +01:00
|
|
|
use Friendica\Util\Network;
|
2017-12-02 00:47:52 +01:00
|
|
|
use Exception;
|
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
|
|
|
{
|
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;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief supported mimetypes and corresponding file extensions
|
2017-11-29 23:29:11 +01:00
|
|
|
* @return array
|
2016-11-04 16:44:49 +01:00
|
|
|
*/
|
2017-11-29 18:17:12 +01:00
|
|
|
public static function supportedTypes()
|
|
|
|
{
|
2016-11-04 16:44:49 +01:00
|
|
|
if (class_exists('Imagick')) {
|
|
|
|
// Imagick::queryFormats won't help us a lot there...
|
|
|
|
// At least, not yet, other parts of friendica uses this array
|
2018-01-15 14:05:12 +01:00
|
|
|
$t = [
|
2016-11-04 16:44:49 +01:00
|
|
|
'image/jpeg' => 'jpg',
|
|
|
|
'image/png' => 'png',
|
|
|
|
'image/gif' => 'gif'
|
2018-01-15 14:05:12 +01:00
|
|
|
];
|
2016-11-04 16:44:49 +01:00
|
|
|
} else {
|
2018-01-15 14:05:12 +01:00
|
|
|
$t = [];
|
2016-11-04 16:44:49 +01:00
|
|
|
$t['image/jpeg'] ='jpg';
|
|
|
|
if (imagetypes() & IMG_PNG) {
|
|
|
|
$t['image/png'] = 'png';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $t;
|
2014-06-16 21:49:45 +02:00
|
|
|
}
|
|
|
|
|
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');
|
2017-10-21 18:13:25 +02:00
|
|
|
$this->types = static::supportedTypes();
|
2017-11-29 18:17:12 +01:00
|
|
|
if (!array_key_exists($type, $this->types)) {
|
2016-11-04 16:44:49 +01:00
|
|
|
$type='image/jpeg';
|
|
|
|
}
|
|
|
|
$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
|
|
|
|
2016-11-04 16:44:49 +01:00
|
|
|
/**
|
|
|
|
* @brief Maps Mime types to Imagick formats
|
2017-12-17 21:27:50 +01:00
|
|
|
* @return array With with image formats (mime type as key)
|
2016-11-04 16:44:49 +01:00
|
|
|
*/
|
2017-11-30 19:51:04 +01:00
|
|
|
public static function getFormatsMap()
|
2017-11-29 18:17:12 +01:00
|
|
|
{
|
2018-01-15 14:05:12 +01:00
|
|
|
$m = [
|
2016-11-04 16:44:49 +01:00
|
|
|
'image/jpeg' => 'JPG',
|
|
|
|
'image/png' => 'PNG',
|
|
|
|
'image/gif' => 'GIF'
|
2018-01-15 14:05:12 +01:00
|
|
|
];
|
2016-11-04 16:44:49 +01:00
|
|
|
return $m;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
*/
|
2017-11-30 19:51:04 +01:00
|
|
|
$map = self::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
|
|
|
|
2016-11-04 16:44:49 +01:00
|
|
|
$ort = $exif['IFD0']['Orientation'];
|
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
|
|
|
|
2018-12-28 01:22:35 +01:00
|
|
|
$a = \get_app();
|
2015-03-07 21:07:26 +01:00
|
|
|
|
2016-11-04 16:44:49 +01:00
|
|
|
$stamp1 = microtime(true);
|
|
|
|
file_put_contents($path, $string);
|
2018-10-09 19:58:58 +02:00
|
|
|
$a->saveTimestamp($stamp1, "file");
|
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
|
|
|
|
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
|
|
|
*
|
|
|
|
* @return object
|
2019-01-06 22:06:53 +01:00
|
|
|
* @throws \ImagickException
|
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
|
|
|
{
|
2018-10-30 14:58:45 +01:00
|
|
|
Logger::log('Image: guessType: '.$filename . ($fromcurl?' from curl headers':''), Logger::DEBUG);
|
2017-11-29 18:17:12 +01:00
|
|
|
$type = null;
|
|
|
|
if ($fromcurl) {
|
2018-01-15 14:05:12 +01:00
|
|
|
$headers=[];
|
2018-10-10 21:20:30 +02:00
|
|
|
$h = explode("\n", $header);
|
2017-11-29 18:17:12 +01:00
|
|
|
foreach ($h as $l) {
|
2018-07-10 14:27:56 +02:00
|
|
|
$data = array_map("trim", explode(":", trim($l), 2));
|
|
|
|
if (count($data) > 1) {
|
|
|
|
list($k,$v) = $data;
|
|
|
|
$headers[$k] = $v;
|
|
|
|
}
|
2017-11-29 18:17:12 +01:00
|
|
|
}
|
|
|
|
if (array_key_exists('Content-Type', $headers))
|
|
|
|
$type = $headers['Content-Type'];
|
|
|
|
}
|
|
|
|
if (is_null($type)) {
|
|
|
|
// Guessing from extension? Isn't that... dangerous?
|
|
|
|
if (class_exists('Imagick') && file_exists($filename) && is_readable($filename)) {
|
|
|
|
/**
|
|
|
|
* Well, this not much better,
|
|
|
|
* but at least it comes from the data inside the image,
|
|
|
|
* we won't be tricked by a manipulated extension
|
|
|
|
*/
|
|
|
|
$image = new Imagick($filename);
|
|
|
|
$type = $image->getImageMimeType();
|
|
|
|
$image->setInterlaceScheme(Imagick::INTERLACE_PLANE);
|
|
|
|
} else {
|
|
|
|
$ext = pathinfo($filename, PATHINFO_EXTENSION);
|
2017-11-30 19:51:04 +01:00
|
|
|
$types = self::supportedTypes();
|
2017-11-29 18:17:12 +01:00
|
|
|
$type = "image/jpeg";
|
|
|
|
foreach ($types as $m => $e) {
|
|
|
|
if ($ext == $e) {
|
|
|
|
$type = $m;
|
|
|
|
}
|
2016-11-04 16:44:49 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-10-30 14:58:45 +01:00
|
|
|
Logger::log('Image: guessType: type='.$type, Logger::DEBUG);
|
2017-11-29 18:17:12 +01:00
|
|
|
return $type;
|
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
|
|
|
|
* @return object
|
2019-01-06 22:06:53 +01:00
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
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
|
|
|
{
|
2018-01-15 14:05:12 +01:00
|
|
|
$data = [];
|
2017-12-07 14:56:11 +01:00
|
|
|
|
2018-03-25 01:03:28 +01:00
|
|
|
if (empty($url)) {
|
|
|
|
return $data;
|
|
|
|
}
|
|
|
|
|
2017-11-29 18:17:12 +01:00
|
|
|
$data = Cache::get($url);
|
2017-12-07 14:56:11 +01:00
|
|
|
|
2017-11-29 18:17:12 +01:00
|
|
|
if (is_null($data) || !$data || !is_array($data)) {
|
2018-01-27 17:13:41 +01:00
|
|
|
$img_str = Network::fetchUrl($url, true, $redirects, 4);
|
2018-07-22 18:38:53 +02:00
|
|
|
|
|
|
|
if (!$img_str) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-11-29 18:17:12 +01:00
|
|
|
$filesize = strlen($img_str);
|
2017-12-07 14:56:11 +01:00
|
|
|
|
2018-07-08 07:29:06 +02:00
|
|
|
try {
|
|
|
|
if (function_exists("getimagesizefromstring")) {
|
2018-08-31 07:08:22 +02:00
|
|
|
$data = @getimagesizefromstring($img_str);
|
2018-07-08 07:29:06 +02:00
|
|
|
} else {
|
|
|
|
$tempfile = tempnam(get_temppath(), "cache");
|
|
|
|
|
2018-12-28 01:22:35 +01:00
|
|
|
$a = \get_app();
|
2018-07-08 07:29:06 +02:00
|
|
|
$stamp1 = microtime(true);
|
|
|
|
file_put_contents($tempfile, $img_str);
|
2018-10-09 19:58:58 +02:00
|
|
|
$a->saveTimestamp($stamp1, "file");
|
2018-07-08 07:29:06 +02:00
|
|
|
|
|
|
|
$data = getimagesize($tempfile);
|
|
|
|
unlink($tempfile);
|
|
|
|
}
|
|
|
|
} catch (Exception $e) {
|
|
|
|
return false;
|
|
|
|
}
|
2017-12-07 14:56:11 +01:00
|
|
|
|
2017-11-29 18:17:12 +01:00
|
|
|
if ($data) {
|
|
|
|
$data["size"] = $filesize;
|
|
|
|
}
|
2017-12-07 14:56:11 +01:00
|
|
|
|
2017-11-29 18:17:12 +01:00
|
|
|
Cache::set($url, $data);
|
|
|
|
}
|
2017-12-07 14:56:11 +01:00
|
|
|
|
2017-11-29 18:17:12 +01:00
|
|
|
return $data;
|
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
|
|
|
|
*/
|
2017-12-07 14:56:11 +01:00
|
|
|
public static function getScalingDimensions($width, $height, $max)
|
2017-11-29 18:17:12 +01:00
|
|
|
{
|
|
|
|
if ((!$width) || (!$height)) {
|
|
|
|
return false;
|
2014-06-16 21:49:45 +02:00
|
|
|
}
|
2017-12-07 14:56:11 +01:00
|
|
|
|
2017-11-29 18:17:12 +01:00
|
|
|
if ($width > $max && $height > $max) {
|
|
|
|
// very tall image (greater than 16:9)
|
|
|
|
// constrain the width - let the height float.
|
2017-12-07 14:56:11 +01:00
|
|
|
|
2017-11-29 18:17:12 +01:00
|
|
|
if ((($height * 9) / 16) > $width) {
|
|
|
|
$dest_width = $max;
|
|
|
|
$dest_height = intval(($height * $max) / $width);
|
|
|
|
} elseif ($width > $height) {
|
|
|
|
// else constrain both dimensions
|
|
|
|
$dest_width = $max;
|
|
|
|
$dest_height = intval(($height * $max) / $width);
|
|
|
|
} else {
|
|
|
|
$dest_width = intval(($width * $max) / $height);
|
|
|
|
$dest_height = $max;
|
|
|
|
}
|
2016-11-04 16:44:49 +01:00
|
|
|
} else {
|
2017-11-29 18:17:12 +01:00
|
|
|
if ($width > $max) {
|
|
|
|
$dest_width = $max;
|
|
|
|
$dest_height = intval(($height * $max) / $width);
|
|
|
|
} else {
|
|
|
|
if ($height > $max) {
|
|
|
|
// very tall image (greater than 16:9)
|
|
|
|
// but width is OK - don't do anything
|
2017-12-07 14:56:11 +01:00
|
|
|
|
2017-11-29 18:17:12 +01:00
|
|
|
if ((($height * 9) / 16) > $width) {
|
|
|
|
$dest_width = $width;
|
|
|
|
$dest_height = $height;
|
|
|
|
} else {
|
|
|
|
$dest_width = intval(($width * $max) / $height);
|
|
|
|
$dest_height = $max;
|
|
|
|
}
|
|
|
|
} else {
|
2014-06-16 21:49:45 +02:00
|
|
|
$dest_width = $width;
|
|
|
|
$dest_height = $height;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-01-15 14:05:12 +01:00
|
|
|
return ["width" => $dest_width, "height" => $dest_height];
|
2014-06-16 21:49:45 +02:00
|
|
|
}
|
2017-11-30 13:40:20 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief This function is used by the fromgplus addon
|
2019-01-06 22:06:53 +01:00
|
|
|
* @param App $a App
|
2017-11-30 13:40:20 +01:00
|
|
|
* @param integer $uid user id
|
|
|
|
* @param string $imagedata optional, default empty
|
|
|
|
* @param string $url optional, default empty
|
|
|
|
* @return array
|
2019-01-06 22:06:53 +01:00
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
|
|
|
* @throws \ImagickException
|
2017-11-30 13:40:20 +01:00
|
|
|
*/
|
2017-11-30 19:51:04 +01:00
|
|
|
public static function storePhoto(App $a, $uid, $imagedata = "", $url = "")
|
2017-11-30 13:40:20 +01:00
|
|
|
{
|
|
|
|
$r = q(
|
|
|
|
"SELECT `user`.`nickname`, `user`.`page-flags`, `contact`.`id` FROM `user` INNER JOIN `contact` on `user`.`uid` = `contact`.`uid`
|
|
|
|
WHERE `user`.`uid` = %d AND `user`.`blocked` = 0 AND `contact`.`self` = 1 LIMIT 1",
|
|
|
|
intval($uid)
|
|
|
|
);
|
2017-12-07 14:56:11 +01:00
|
|
|
|
2018-07-21 14:46:04 +02:00
|
|
|
if (!DBA::isResult($r)) {
|
2018-10-30 14:58:45 +01:00
|
|
|
Logger::log("Can't detect user data for uid ".$uid, Logger::DEBUG);
|
2018-01-15 14:05:12 +01:00
|
|
|
return([]);
|
2017-11-30 13:40:20 +01:00
|
|
|
}
|
2017-12-07 14:56:11 +01:00
|
|
|
|
2017-11-30 13:40:20 +01:00
|
|
|
$page_owner_nick = $r[0]['nickname'];
|
2017-12-07 14:56:11 +01:00
|
|
|
|
2017-11-30 13:40:20 +01:00
|
|
|
/// @TODO
|
|
|
|
/// $default_cid = $r[0]['id'];
|
2019-01-06 18:37:48 +01:00
|
|
|
/// $community_page = (($r[0]['page-flags'] == User::PAGE_FLAGS_COMMUNITY) ? true : false);
|
2017-12-07 14:56:11 +01:00
|
|
|
|
2017-11-30 13:40:20 +01:00
|
|
|
if ((strlen($imagedata) == 0) && ($url == "")) {
|
2018-10-30 14:58:45 +01:00
|
|
|
Logger::log("No image data and no url provided", Logger::DEBUG);
|
2018-01-15 14:05:12 +01:00
|
|
|
return([]);
|
2017-11-30 13:40:20 +01:00
|
|
|
} elseif (strlen($imagedata) == 0) {
|
2018-10-30 14:58:45 +01:00
|
|
|
Logger::log("Uploading picture from ".$url, Logger::DEBUG);
|
2017-12-07 14:56:11 +01:00
|
|
|
|
2017-11-30 13:40:20 +01:00
|
|
|
$stamp1 = microtime(true);
|
|
|
|
$imagedata = @file_get_contents($url);
|
2018-10-09 19:58:58 +02:00
|
|
|
$a->saveTimestamp($stamp1, "file");
|
2017-11-30 13:40:20 +01:00
|
|
|
}
|
2017-12-07 14:56:11 +01:00
|
|
|
|
2017-11-30 13:40:20 +01:00
|
|
|
$maximagesize = Config::get('system', 'maximagesize');
|
2017-12-07 14:56:11 +01:00
|
|
|
|
2017-11-30 13:40:20 +01:00
|
|
|
if (($maximagesize) && (strlen($imagedata) > $maximagesize)) {
|
2018-10-30 14:58:45 +01:00
|
|
|
Logger::log("Image exceeds size limit of ".$maximagesize, Logger::DEBUG);
|
2018-01-15 14:05:12 +01:00
|
|
|
return([]);
|
2017-11-30 13:40:20 +01:00
|
|
|
}
|
2017-12-07 14:56:11 +01:00
|
|
|
|
2017-11-30 13:40:20 +01:00
|
|
|
$tempfile = tempnam(get_temppath(), "cache");
|
2017-12-07 14:56:11 +01:00
|
|
|
|
2017-11-30 13:40:20 +01:00
|
|
|
$stamp1 = microtime(true);
|
|
|
|
file_put_contents($tempfile, $imagedata);
|
2018-10-09 19:58:58 +02:00
|
|
|
$a->saveTimestamp($stamp1, "file");
|
2017-12-07 14:56:11 +01:00
|
|
|
|
2017-11-30 13:40:20 +01:00
|
|
|
$data = getimagesize($tempfile);
|
2017-12-07 14:56:11 +01:00
|
|
|
|
2017-11-30 13:40:20 +01:00
|
|
|
if (!isset($data["mime"])) {
|
|
|
|
unlink($tempfile);
|
2018-10-30 14:58:45 +01:00
|
|
|
Logger::log("File is no picture", Logger::DEBUG);
|
2018-01-15 14:05:12 +01:00
|
|
|
return([]);
|
2017-11-30 13:40:20 +01:00
|
|
|
}
|
2017-12-07 14:56:11 +01:00
|
|
|
|
|
|
|
$Image = new Image($imagedata, $data["mime"]);
|
|
|
|
|
|
|
|
if (!$Image->isValid()) {
|
2017-11-30 13:40:20 +01:00
|
|
|
unlink($tempfile);
|
2018-10-30 14:58:45 +01:00
|
|
|
Logger::log("Picture is no valid picture", Logger::DEBUG);
|
2018-01-15 14:05:12 +01:00
|
|
|
return([]);
|
2017-11-30 13:40:20 +01:00
|
|
|
}
|
2017-12-07 14:56:11 +01:00
|
|
|
|
|
|
|
$Image->orient($tempfile);
|
2017-11-30 13:40:20 +01:00
|
|
|
unlink($tempfile);
|
2017-12-07 14:56:11 +01:00
|
|
|
|
2017-11-30 13:40:20 +01:00
|
|
|
$max_length = Config::get('system', 'max_image_length');
|
|
|
|
if (! $max_length) {
|
|
|
|
$max_length = MAX_IMAGE_LENGTH;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($max_length > 0) {
|
2017-12-07 14:56:11 +01:00
|
|
|
$Image->scaleDown($max_length);
|
2017-11-30 13:40:20 +01:00
|
|
|
}
|
2017-12-07 14:56:11 +01:00
|
|
|
|
|
|
|
$width = $Image->getWidth();
|
|
|
|
$height = $Image->getHeight();
|
|
|
|
|
2018-02-20 11:02:07 +01:00
|
|
|
$hash = Photo::newResource();
|
2017-12-07 14:56:11 +01:00
|
|
|
|
2017-11-30 13:40:20 +01:00
|
|
|
// Pictures are always public by now
|
|
|
|
//$defperm = '<'.$default_cid.'>';
|
|
|
|
$defperm = "";
|
|
|
|
$visitor = 0;
|
2017-12-07 14:56:11 +01:00
|
|
|
|
2018-01-22 15:54:13 +01:00
|
|
|
$r = Photo::store($Image, $uid, $visitor, $hash, $tempfile, L10n::t('Wall Photos'), 0, 0, $defperm);
|
2017-12-07 14:56:11 +01:00
|
|
|
|
2017-11-30 13:40:20 +01:00
|
|
|
if (!$r) {
|
2018-10-30 14:58:45 +01:00
|
|
|
Logger::log("Picture couldn't be stored", Logger::DEBUG);
|
2018-01-15 14:05:12 +01:00
|
|
|
return([]);
|
2017-11-30 13:40:20 +01:00
|
|
|
}
|
2017-12-07 14:56:11 +01:00
|
|
|
|
2018-01-15 14:05:12 +01:00
|
|
|
$image = ["page" => System::baseUrl().'/photos/'.$page_owner_nick.'/image/'.$hash,
|
|
|
|
"full" => System::baseUrl()."/photo/{$hash}-0.".$Image->getExt()];
|
2017-12-07 14:56:11 +01:00
|
|
|
|
2017-11-30 13:40:20 +01:00
|
|
|
if ($width > 800 || $height > 800) {
|
2017-12-07 14:56:11 +01:00
|
|
|
$image["large"] = System::baseUrl()."/photo/{$hash}-0.".$Image->getExt();
|
2017-11-30 13:40:20 +01:00
|
|
|
}
|
2017-12-07 14:56:11 +01:00
|
|
|
|
2017-11-30 13:40:20 +01:00
|
|
|
if ($width > 640 || $height > 640) {
|
2017-12-07 14:56:11 +01:00
|
|
|
$Image->scaleDown(640);
|
2018-01-22 15:54:13 +01:00
|
|
|
$r = Photo::store($Image, $uid, $visitor, $hash, $tempfile, L10n::t('Wall Photos'), 1, 0, $defperm);
|
2017-11-30 13:40:20 +01:00
|
|
|
if ($r) {
|
2017-12-07 14:56:11 +01:00
|
|
|
$image["medium"] = System::baseUrl()."/photo/{$hash}-1.".$Image->getExt();
|
2017-11-30 13:40:20 +01:00
|
|
|
}
|
|
|
|
}
|
2017-12-07 14:56:11 +01:00
|
|
|
|
2017-11-30 13:40:20 +01:00
|
|
|
if ($width > 320 || $height > 320) {
|
2017-12-07 14:56:11 +01:00
|
|
|
$Image->scaleDown(320);
|
2018-01-22 15:54:13 +01:00
|
|
|
$r = Photo::store($Image, $uid, $visitor, $hash, $tempfile, L10n::t('Wall Photos'), 2, 0, $defperm);
|
2017-11-30 13:40:20 +01:00
|
|
|
if ($r) {
|
2017-12-07 14:56:11 +01:00
|
|
|
$image["small"] = System::baseUrl()."/photo/{$hash}-2.".$Image->getExt();
|
2017-11-30 13:40:20 +01:00
|
|
|
}
|
|
|
|
}
|
2017-12-07 14:56:11 +01:00
|
|
|
|
2017-11-30 13:40:20 +01:00
|
|
|
if ($width > 160 && $height > 160) {
|
|
|
|
$x = 0;
|
|
|
|
$y = 0;
|
2017-12-07 14:56:11 +01:00
|
|
|
|
|
|
|
$min = $Image->getWidth();
|
2017-11-30 13:40:20 +01:00
|
|
|
if ($min > 160) {
|
|
|
|
$x = ($min - 160) / 2;
|
|
|
|
}
|
2017-12-07 14:56:11 +01:00
|
|
|
|
|
|
|
if ($Image->getHeight() < $min) {
|
|
|
|
$min = $Image->getHeight();
|
2017-11-30 13:40:20 +01:00
|
|
|
if ($min > 160) {
|
|
|
|
$y = ($min - 160) / 2;
|
|
|
|
}
|
|
|
|
}
|
2017-12-07 14:56:11 +01:00
|
|
|
|
2017-11-30 13:40:20 +01:00
|
|
|
$min = 160;
|
2017-12-07 14:56:11 +01:00
|
|
|
$Image->crop(160, $x, $y, $min, $min);
|
|
|
|
|
2018-01-22 15:54:13 +01:00
|
|
|
$r = Photo::store($Image, $uid, $visitor, $hash, $tempfile, L10n::t('Wall Photos'), 3, 0, $defperm);
|
2017-11-30 13:40:20 +01:00
|
|
|
if ($r) {
|
2017-12-07 14:56:11 +01:00
|
|
|
$image["thumb"] = System::baseUrl()."/photo/{$hash}-3.".$Image->getExt();
|
2017-11-30 13:40:20 +01:00
|
|
|
}
|
|
|
|
}
|
2017-12-07 14:56:11 +01:00
|
|
|
|
2017-11-30 13:40:20 +01:00
|
|
|
// Set the full image as preview image. This will be overwritten, if the picture is larger than 640.
|
|
|
|
$image["preview"] = $image["full"];
|
2017-12-07 14:56:11 +01:00
|
|
|
|
2017-11-30 13:40:20 +01:00
|
|
|
// Deactivated, since that would result in a cropped preview, if the picture wasn't larger than 320
|
|
|
|
//if (isset($image["thumb"]))
|
|
|
|
// $image["preview"] = $image["thumb"];
|
2017-12-07 14:56:11 +01:00
|
|
|
|
2017-11-30 13:40:20 +01:00
|
|
|
// Unsure, if this should be activated or deactivated
|
|
|
|
//if (isset($image["small"]))
|
|
|
|
// $image["preview"] = $image["small"];
|
2017-12-07 14:56:11 +01:00
|
|
|
|
2017-11-30 13:40:20 +01:00
|
|
|
if (isset($image["medium"])) {
|
|
|
|
$image["preview"] = $image["medium"];
|
|
|
|
}
|
2017-12-07 14:56:11 +01:00
|
|
|
|
2017-11-30 13:40:20 +01:00
|
|
|
return($image);
|
|
|
|
}
|
2014-07-15 08:49:41 +02:00
|
|
|
}
|