]> git.mxchange.org Git - friendica.git/blobdiff - mod/photo.php
OStatus auto completion: option to completely disable the auto completion.
[friendica.git] / mod / photo.php
index c92ab387b05135644f942095abf0fd3b4374a89b..434193f71318edc6b9b63abac8feefb8d95a6b4c 100644 (file)
@@ -169,13 +169,16 @@ function photo_init(&$a) {
                }
        }
 
-       $ph = new Photo($data, $mimetype);
-       if($ph->is_valid()) {
-               if(isset($customres) && $customres > 0 && $customres < 500) {
-                       $ph->scaleImageSquare($customres);
+       // Resize only if its not a GIF
+       if ($mime != "image/gif") {
+               $ph = new Photo($data, $mimetype);
+               if($ph->is_valid()) {
+                       if(isset($customres) && $customres > 0 && $customres < 500) {
+                               $ph->scaleImageSquare($customres);
+                       }
+                       $data = $ph->imageString();
+                       $mimetype = $ph->getType();
                }
-               $data = $ph->imageString();
-               $mimetype = $ph->getType();
        }
 
        if(function_exists('header_remove')) {
@@ -203,9 +206,15 @@ function photo_init(&$a) {
        echo $data;
 
        // If the photo is public and there is an existing photo directory store the photo there
-       if ($public and ($file != ""))
+       if ($public and ($file != "")) {
+               // If the photo path isn't there, try to create it
+               if (!is_dir($_SERVER["DOCUMENT_ROOT"]."/photo"))
+                       if (is_writable($_SERVER["DOCUMENT_ROOT"]))
+                               mkdir($_SERVER["DOCUMENT_ROOT"]."/photo");
+
                if (is_dir($_SERVER["DOCUMENT_ROOT"]."/photo"))
                        file_put_contents($_SERVER["DOCUMENT_ROOT"]."/photo/".$file, $data);
+       }
 
        killme();
        // NOTREACHED