Bug #22488 ยป bug_14155.diff
typo3_src-4.2.12/t3lib/class.t3lib_stdgraphic.php 2010-04-19 23:51:35.587966091 +0200 | ||
---|---|---|
*/
|
||
function imageMagickExec($input,$output,$params,$frame = 0) {
|
||
if (!$this->NO_IMAGE_MAGICK) {
|
||
$frame = $frame ? '['.intval($frame).']' : '';
|
||
$frame = isset($frame) ? '['.intval($frame).']' : '';
|
||
$cmd = t3lib_div::imageMagickCommand('convert', $params.' '.$this->wrapFileName($input).$frame.' '.$this->wrapFileName($output));
|
||
$this->IM_commands[] = array($output,$cmd);
|
||