--- typo3_src-3.6.0RC1-20040224cvs/t3lib/class.t3lib_stdgraphic.php.bak Wed Apr 21 09:46:05 2004 +++ typo3_src-3.6.0RC1-20040224cvs/t3lib/class.t3lib_stdgraphic.php Wed Apr 21 09:41:47 2004 @@ -1999,7 +1999,8 @@ */ 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]);