コード例 #1
0
 /**
  * Construct the FileImage handler
  *
  * @param string $a_path
  * @throws Exception If the file isn't an image or does not exists
  */
 public function __construct($a_path = null)
 {
     try {
         parent::__construct($a_path);
         $this->load();
     } catch (GenericException $e) {
         throw $e;
     }
 }