/**
* Class constructor
*
* @param array $options Associative array of options
*
* @since 3.0.0
*/
public function __construct($options = array())
{
parent::__construct($options);
// Set mime type
$this->_mime = 'image/png';
// Set document type
$this->_type = 'image';
}