mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
Support imagemagick on new image transform pathway
Summary: Ref T7707. For animated GIFs, use imagemagick if it is available. Test Plan: Generated small versions of a bunch of different GIFs. Reviewers: btrahan Reviewed By: btrahan Subscribers: epriestley Maniphest Tasks: T7707 Differential Revision: https://secure.phabricator.com/D12813
This commit is contained in:
parent
fd1e0bc4d3
commit
200e525df1
1 changed files with 47 additions and 1 deletions
|
@ -42,7 +42,19 @@ abstract class PhabricatorFileImageTransform extends PhabricatorFileTransform {
|
|||
$off_x = ($dst_w - $cpy_w) / 2;
|
||||
$off_y = ($dst_h - $cpy_h) / 2;
|
||||
|
||||
// TODO: Support imagemagick for animated GIFs.
|
||||
if ($this->shouldUseImagemagick()) {
|
||||
$argv = array();
|
||||
$argv[] = '-coalesce';
|
||||
$argv[] = '-shave';
|
||||
$argv[] = $src_x.'x'.$src_y;
|
||||
$argv[] = '-resize';
|
||||
$argv[] = $dst_w.'x'.$dst_h.'>';
|
||||
$argv[] = '-bordercolor';
|
||||
$argv[] = 'rgba(255, 255, 255, 0)';
|
||||
$argv[] = '-border';
|
||||
$argv[] = $off_x.'x'.$off_y;
|
||||
return $this->applyImagemagick($argv);
|
||||
}
|
||||
|
||||
$src = $this->getImage();
|
||||
$dst = $this->newEmptyImage($dst_w, $dst_h);
|
||||
|
@ -72,6 +84,22 @@ abstract class PhabricatorFileImageTransform extends PhabricatorFileTransform {
|
|||
return $this->newFileFromData($data);
|
||||
}
|
||||
|
||||
protected function applyImagemagick(array $argv) {
|
||||
$tmp = new TempFile();
|
||||
Filesystem::writeFile($tmp, $this->getData());
|
||||
|
||||
$out = new TempFile();
|
||||
|
||||
$future = new ExecFuture('convert %s %Ls %s', $tmp, $argv, $out);
|
||||
// Don't spend more than 10 seconds resizing; just fail if it takes longer
|
||||
// than that.
|
||||
$future->setTimeout(10)->resolvex();
|
||||
|
||||
$data = Filesystem::readFile($out);
|
||||
|
||||
return $this->newFileFromData($data);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Create a new @{class:PhabricatorFile} from raw data.
|
||||
|
@ -299,4 +327,22 @@ abstract class PhabricatorFileImageTransform extends PhabricatorFileTransform {
|
|||
return $this->image;
|
||||
}
|
||||
|
||||
private function shouldUseImagemagick() {
|
||||
if (!PhabricatorEnv::getEnvConfig('files.enable-imagemagick')) {
|
||||
return false;
|
||||
}
|
||||
|
||||
if ($this->file->getMimeType() != 'image/gif') {
|
||||
return false;
|
||||
}
|
||||
|
||||
// Don't try to preserve the animation in huge GIFs.
|
||||
list($x, $y) = $this->getImageDimensions();
|
||||
if (($x * $y) > (512 * 512)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue