diff options
Diffstat (limited to 'lib/image.php')
-rw-r--r-- | lib/image.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/image.php b/lib/image.php index e87cf9e16d9..f4b3c2cc071 100644 --- a/lib/image.php +++ b/lib/image.php @@ -262,7 +262,7 @@ class OC_Image { * @returns The orientation or -1 if no EXIF data is available. */ public function getOrientation() { - if(!is_callable('exif_read_data')){ + if(!is_callable('exif_read_data')) { OC_Log::write('core','OC_Image->fixOrientation() Exif module not enabled.', OC_Log::DEBUG); return -1; } @@ -612,7 +612,7 @@ class OC_Image { $y = ($height_orig/2) - ($height/2); $x = 0; } - if($size>0){ + if($size>0) { $targetWidth=$size; $targetHeight=$size; }else{ @@ -666,14 +666,14 @@ class OC_Image { return true; } - public function destroy(){ - if($this->valid()){ + public function destroy() { + if($this->valid()) { imagedestroy($this->resource); } $this->resource=null; } - public function __destruct(){ + public function __destruct() { $this->destroy(); } } |