Bug #14124 ยป 0000032-class.t3lib_stdgraphic.php.diff
typo3_src-3.6.0RC1-20040224cvs/t3lib/class.t3lib_stdgraphic.php Wed Apr 21 09:41:47 2004 | ||
---|---|---|
*/
|
||
function imageMagickIdentify($imagefile) {
|
||
if (!$this->NO_IMAGE_MAGICK) {
|
||
$cmd = $this->imageMagickPath.'identify '.$this->wrapFileName($imagefile);
|
||
$frame = $this->noFramePrepended ? '' : '[0]';
|
||
$cmd = $this->imageMagickPath.'identify '.$this->wrapFileName($imagefile).$frame;
|
||
exec($cmd, $returnVal);
|
||
$splitstring=$returnVal[0];
|
||
$this->IM_commands[] = Array ('identify',$cmd,$returnVal[0]);
|