get_FormatsMap doesn't need to be static

This commit is contained in:
Domovoy 2012-07-22 17:09:18 +02:00
parent 62cd4dcb77
commit a3df0d9817
1 changed files with 12 additions and 12 deletions

View File

@ -38,18 +38,6 @@ class Photo {
return $t;
}
/**
* Maps Mime types to Imagick formats
*/
static function get_FormatsMap() {
$m = array(
'image/jpeg' => 'JPG',
'image/png' => 'PNG',
'image/gif' => 'GIF'
);
return $m;
}
public function __construct($data, $type=null) {
$this->imagick = class_exists('Imagick');
$this->types = $this->supportedTypes();
@ -99,6 +87,18 @@ class Photo {
return $this->imagick;
}
/**
* Maps Mime types to Imagick formats
*/
public function get_FormatsMap() {
$m = array(
'image/jpeg' => 'JPG',
'image/png' => 'PNG',
'image/gif' => 'GIF'
);
return $m;
}
public function is_valid() {
if($this->is_imagick())
return ($this->image !== FALSE);