diff options
author | Mario <mario@mariovavti.com> | 2019-12-07 20:14:18 +0100 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2019-12-07 20:14:18 +0100 |
commit | 593688d5390417564f393dd326bbcc5dd0bf8d16 (patch) | |
tree | a022f3769332331a9c30f4b96a81a6b854690767 /Zotlabs/Photo/PhotoImagick.php | |
parent | 96f9e515466b749d1e1640aad3fd25bc19399f1a (diff) | |
parent | aed682305173a67b2af1a56b8595445bec690e2b (diff) | |
download | volse-hubzilla-593688d5390417564f393dd326bbcc5dd0bf8d16.tar.gz volse-hubzilla-593688d5390417564f393dd326bbcc5dd0bf8d16.tar.bz2 volse-hubzilla-593688d5390417564f393dd326bbcc5dd0bf8d16.zip |
Merge branch 'dev' into 'dev'
Add .webp image format support
See merge request hubzilla/core!1802
Diffstat (limited to 'Zotlabs/Photo/PhotoImagick.php')
-rw-r--r-- | Zotlabs/Photo/PhotoImagick.php | 30 |
1 files changed, 19 insertions, 11 deletions
diff --git a/Zotlabs/Photo/PhotoImagick.php b/Zotlabs/Photo/PhotoImagick.php index a7026e8ca..0a08d19e6 100644 --- a/Zotlabs/Photo/PhotoImagick.php +++ b/Zotlabs/Photo/PhotoImagick.php @@ -8,19 +8,16 @@ namespace Zotlabs\Photo; class PhotoImagick extends PhotoDriver { public function supportedTypes() { - return [ + + $ret = [ 'image/jpeg' => 'jpg', 'image/png' => 'png', - 'image/gif' => 'gif', + 'image/gif' => 'gif' ]; - } + if(\Imagick::queryFormats("WEBP")) + $ret['image/webp'] = 'webp'; - private function get_FormatsMap() { - return [ - 'image/jpeg' => 'JPG', - 'image/png' => 'PNG', - 'image/gif' => 'GIF', - ]; + return $ret; } @@ -42,8 +39,8 @@ class PhotoImagick extends PhotoDriver { * Setup the image to the format it will be saved to */ - $map = $this->get_FormatsMap(); - $format = $map[$type]; + $map = $this->supportedTypes(); + $format = strtoupper($map[$type]); if($this->image) { $this->image->setFormat($format); @@ -58,6 +55,7 @@ class PhotoImagick extends PhotoDriver { * setup the compression here, so we'll do it only once */ switch($this->getType()) { + case 'image/png': $quality = get_config('system', 'png_quality'); if((! $quality) || ($quality > 9)) @@ -73,11 +71,21 @@ class PhotoImagick extends PhotoDriver { $quality = $quality * 10; $this->image->setCompressionQuality($quality); break; + case 'image/jpeg': $quality = get_config('system', 'jpeg_quality'); if((! $quality) || ($quality > 100)) $quality = JPEG_QUALITY; $this->image->setCompressionQuality($quality); + break; + + case 'image/webp': + $quality = get_config('system', 'webp_quality'); + if((! $quality) || ($quality > 100)) + $quality = WEBP_QUALITY; + $this->image->setCompressionQuality($quality); + break; + default: break; } |