X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FObject%2FImage.php;h=d69b01ad4d9e016180cca7916f2d4178116b2565;hb=ab5a447bc2261522d0f5560f8933dd928a6fc6e3;hp=fd4713b3395feea2c98fe46d0fa61c0c46a26c35;hpb=0a4119adaf6294bf43d135a0f435c1dd677c50e0;p=friendica.git diff --git a/src/Object/Image.php b/src/Object/Image.php index fd4713b339..d69b01ad4d 100644 --- a/src/Object/Image.php +++ b/src/Object/Image.php @@ -1,13 +1,27 @@ . + * */ + namespace Friendica\Object; use Exception; -use Friendica\Core\Config; -use Friendica\Core\System; use Friendica\DI; use Friendica\Util\Images; use Imagick; @@ -58,6 +72,7 @@ class Image /** * Destructor + * * @return void */ public function __destruct() @@ -107,14 +122,18 @@ class Image $this->image->setFormat($format); // Always coalesce, if it is not a multi-frame image it won't hurt anyway - $this->image = $this->image->coalesceImages(); + try { + $this->image = $this->image->coalesceImages(); + } catch (Exception $e) { + return false; + } /* * setup the compression here, so we'll do it only once */ switch ($this->getType()) { case "image/png": - $quality = Config::get('system', 'png_quality'); + $quality = DI::config()->get('system', 'png_quality'); if ((! $quality) || ($quality > 9)) { $quality = PNG_QUALITY; } @@ -130,7 +149,7 @@ class Image $this->image->setCompressionQuality($quality); break; case "image/jpeg": - $quality = Config::get('system', 'jpeg_quality'); + $quality = DI::config()->get('system', 'jpeg_quality'); if ((! $quality) || ($quality > 100)) { $quality = JPEG_QUALITY; } @@ -440,7 +459,6 @@ class Image break; } - // Logger::log('exif: ' . print_r($exif,true)); return $exif; } @@ -610,7 +628,7 @@ class Image $stamp1 = microtime(true); file_put_contents($path, $string); - DI::profiler()->saveTimestamp($stamp1, "file", System::callstack()); + DI::profiler()->saveTimestamp($stamp1, "file"); } /** @@ -651,14 +669,14 @@ class Image switch ($this->getType()) { case "image/png": - $quality = Config::get('system', 'png_quality'); + $quality = DI::config()->get('system', 'png_quality'); if ((!$quality) || ($quality > 9)) { $quality = PNG_QUALITY; } imagepng($this->image, null, $quality); break; case "image/jpeg": - $quality = Config::get('system', 'jpeg_quality'); + $quality = DI::config()->get('system', 'jpeg_quality'); if ((!$quality) || ($quality > 100)) { $quality = JPEG_QUALITY; } @@ -672,6 +690,7 @@ class Image /** * supported mimetypes and corresponding file extensions + * * @return array * @deprecated in version 2019.12 please use Util\Images::supportedTypes() instead. */ @@ -682,6 +701,7 @@ class Image /** * 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. */ @@ -690,22 +710,6 @@ class Image return Images::getFormatsMap(); } - /** - * 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 - * @param string $header passed headers to take into account - * - * @return string|null - * @throws Exception - * @deprecated in version 2019.12 please use Util\Images::guessType() instead. - */ - public static function guessType($filename, $fromcurl = false, $header = '') - { - return Images::guessType($filename, $fromcurl, $header); - } - /** * @param string $url url * @return array