/**
  * @param string $filename
  * @return array|bool
  */
 function getImageSize($filename)
 {
     if (!$this->getHandler()) {
         return false;
     }
     return $this->handler->getImageSize($this, $this->getLocalRefPath());
 }
Exemplo n.º 2
0
 /**
  * Get an image size array like that returned by getImageSize(), or false if it
  * can't be determined.
  *
  * @param $fileName String: The filename
  * @return Array
  */
 function getImageSize($fileName)
 {
     if (!$this->getHandler()) {
         return false;
     }
     return $this->handler->getImageSize($this, $fileName);
 }