X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FObject%2FImage.php;h=608f64e97c057741445b142d799f3f20ba98237e;hb=0a4dc51bdc401f36a6eea73dc47846964d49bc00;hp=4551db248c8513a05fa2aef4908b499e823add08;hpb=0e2e488521fbcf2d52dc8037ee6e9dd577fbf14c;p=friendica.git diff --git a/src/Object/Image.php b/src/Object/Image.php index 4551db248c..608f64e97c 100644 --- a/src/Object/Image.php +++ b/src/Object/Image.php @@ -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); - } }