]> git.mxchange.org Git - friendica.git/blobdiff - src/Object/Image.php
Merge pull request #11105 from annando/api-direct-messages
[friendica.git] / src / Object / Image.php
index 4551db248c8513a05fa2aef4908b499e823add08..608f64e97c057741445b142d799f3f20ba98237e 100644 (file)
@@ -685,49 +685,4 @@ class Image
 
                return $string;
        }
-
-       /**
-        * supported mimetypes and corresponding file extensions
-        *
-        * @return array
-        * @deprecated in version 2019.12 please use Util\Images::supportedTypes() instead.
-        */
-       public static function supportedTypes()
-       {
-               return Images::supportedTypes();
-       }
-
-       /**
-        * Maps Mime types to Imagick formats
-        *
-        * @return array With with image formats (mime type as key)
-        * @deprecated in version 2019.12 please use Util\Images::getFormatsMap() instead.
-        */
-       public static function getFormatsMap()
-       {
-               return Images::getFormatsMap();
-       }
-
-       /**
-        * @param string $url url
-        * @return array
-        * @throws \Friendica\Network\HTTPException\InternalServerErrorException
-        * @deprecated in version 2019.12 please use Util\Images::getInfoFromURLCached() instead.
-        */
-       public static function getInfoFromURL($url)
-       {
-               return Images::getInfoFromURLCached($url);
-       }
-
-       /**
-        * @param integer $width  width
-        * @param integer $height height
-        * @param integer $max    max
-        * @return array
-        * @deprecated in version 2019.12 please use Util\Images::getScalingDimensions() instead.
-        */
-       public static function getScalingDimensions($width, $height, $max)
-       {
-               return Images::getScalingDimensions($width, $height, $max);
-       }
 }