2015-01-21 15:43:46 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* GNU social - a federating social network
|
|
|
|
*
|
|
|
|
* Plugin to handle more kinds of image formats thanks to ImageMagick
|
|
|
|
*
|
|
|
|
* PHP version 5
|
|
|
|
*
|
|
|
|
* LICENCE: 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 <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* @category Plugin
|
|
|
|
* @package GNUsocial
|
|
|
|
* @author Mikael Nordfeldth <mmn@hethane.se>
|
|
|
|
* @copyright 2014 Free Software Foundation http://fsf.org
|
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
|
|
|
* @link https://www.gnu.org/software/social/
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (!defined('GNUSOCIAL')) { exit(1); }
|
|
|
|
|
|
|
|
class ImageMagickPlugin extends Plugin
|
|
|
|
{
|
2020-08-13 18:31:43 +01:00
|
|
|
const PLUGIN_VERSION = '2.1.0';
|
2015-01-21 15:43:46 +00:00
|
|
|
|
2015-03-04 11:06:21 +00:00
|
|
|
public function onStartResizeImageFile(ImageFile $imagefile, $outpath, array $box)
|
|
|
|
{
|
|
|
|
switch ($imagefile->mimetype) {
|
|
|
|
case 'image/gif':
|
2020-08-13 18:31:43 +01:00
|
|
|
// If GIF, then only for animated gifs
|
|
|
|
if ($imagefile->animated) {
|
2015-03-04 11:06:21 +00:00
|
|
|
return $this->resizeImageFileAnimatedGif($imagefile, $outpath, $box);
|
|
|
|
}
|
|
|
|
break;
|
2015-01-21 15:43:46 +00:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-03-04 11:06:21 +00:00
|
|
|
protected function resizeImageFileAnimatedGif(ImageFile $imagefile, $outpath, array $box)
|
|
|
|
{
|
|
|
|
$magick = new Imagick($imagefile->filepath);
|
|
|
|
$magick = $magick->coalesceImages();
|
|
|
|
$magick->setIteratorIndex(0);
|
|
|
|
do {
|
|
|
|
$magick->cropImage($box['w'], $box['h'], $box['x'], $box['y']);
|
|
|
|
$magick->thumbnailImage($box['width'], $box['height']);
|
|
|
|
$magick->setImagePage($box['width'], $box['height'], 0, 0);
|
|
|
|
} while ($magick->nextImage());
|
|
|
|
$magick = $magick->deconstructImages();
|
|
|
|
|
|
|
|
// $magick->writeImages($outpath, true); did not work, had to use filehandle
|
|
|
|
$fh = fopen($outpath, 'w+');
|
|
|
|
$success = $magick->writeImagesFile($fh);
|
|
|
|
fclose($fh);
|
2015-03-04 11:18:44 +00:00
|
|
|
$magick->destroy();
|
2015-03-04 11:06:21 +00:00
|
|
|
|
|
|
|
return !$success;
|
|
|
|
}
|
|
|
|
|
2019-08-12 15:03:30 +01:00
|
|
|
public function onPluginVersion(array &$versions): bool
|
2015-01-21 15:43:46 +00:00
|
|
|
{
|
|
|
|
$versions[] = array('name' => 'ImageMagick',
|
2019-06-03 01:56:52 +01:00
|
|
|
'version' => self::PLUGIN_VERSION,
|
2015-01-21 15:43:46 +00:00
|
|
|
'author' => 'Mikael Nordfeldth',
|
2019-11-21 00:21:22 +00:00
|
|
|
'homepage' => GNUSOCIAL_ENGINE_URL,
|
2015-01-21 15:43:46 +00:00
|
|
|
'rawdescription' =>
|
|
|
|
// TRANS: Plugin description.
|
2015-01-25 21:56:55 +00:00
|
|
|
_m('Use ImageMagick for some more image support.'));
|
2015-01-21 15:43:46 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|