]> source.dussan.org Git - nextcloud-server.git/commitdiff
make oc_image work when php_exif isn't enabled
authorRobin Appelman <icewind@owncloud.com>
Fri, 20 Jan 2012 16:13:49 +0000 (17:13 +0100)
committerRobin Appelman <icewind@owncloud.com>
Fri, 20 Jan 2012 16:13:49 +0000 (17:13 +0100)
lib/image.php

index 70ad3f5969edc854f2805cfbf773c59f3135afa4..6de3ed9104de26344a82810413f58a5e5aa1989f 100644 (file)
@@ -21,8 +21,7 @@
 *
 */
 
-/** From user comments at http://dk2.php.net/manual/en/function.exif-imagetype.php
- * Don't know if it can come in handy?
+//From user comments at http://dk2.php.net/manual/en/function.exif-imagetype.php
 if ( ! function_exists( 'exif_imagetype' ) ) {
     function exif_imagetype ( $filename ) {
         if ( ( list($width, $height, $type, $attr) = getimagesize( $filename ) ) !== false ) {
@@ -31,7 +30,6 @@ if ( ! function_exists( 'exif_imagetype' ) ) {
     return false;
     }
 }
-*/
 
 function ellipsis($str, $maxlen) {
        if (strlen($str) > $maxlen) {
@@ -205,6 +203,10 @@ class OC_Image {
        * @returns bool.
        */
        public function fixOrientation() {
+               if(!is_callable('exif_read_data')){
+                       OC_Log::write('core','OC_Image::fixOrientation() Exif module not enabled.', OC_Log::DEBUG);
+                       return false;
+               }
                if(!is_resource(self::$resource)) {
                        OC_Log::write('core','OC_Image::fixOrientation() No image loaded.', OC_Log::DEBUG);
                        return false;