]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
mimetype added to ImageFile
authorMikael Nordfeldth <mmn@hethane.se>
Wed, 25 Feb 2015 00:33:32 +0000 (01:33 +0100)
committerMikael Nordfeldth <mmn@hethane.se>
Wed, 25 Feb 2015 00:33:32 +0000 (01:33 +0100)
lib/imagefile.php

index f123d4748541a9ea46e7afee39e50f7a15446082..4ea1803f39ae812a5e491144a8c6cd45e58f4734 100644 (file)
@@ -53,6 +53,7 @@ class ImageFile
     var $width;
     var $rotate=0;  // degrees to rotate for properly oriented image (extrapolated from EXIF etc.)
     var $animated = null;  // Animated image? (has more than 1 frame). null means untested
+    var $mimetype = null;   // The _ImageFile_ mimetype, _not_ the originating File object
 
     function __construct($id, $filepath)
     {
@@ -77,6 +78,7 @@ class ImageFile
         $this->width    = $info[0];
         $this->height   = $info[1];
         $this->type     = $info[2];
+        $this->mimetype = $info['mime'];
 
         if ($this->type == IMAGETYPE_JPEG && function_exists('exif_read_data')) {
             // Orientation value to rotate thumbnails properly