/**
  * Constructor
  *
  * @param string $file Image to open
  */
 public function __construct($options = array())
 {
     // Check support
     if (!class_exists('Imagick', false)) {
         throw new Engine_Image_Adapter_Exception('Imagick library is not installed');
     }
     parent::__construct($options);
 }