]> git.mxchange.org Git - friendica.git/blob - src/Util/Images.php
7b11ea3f6b580e57286d33beab41c04c409c6153
[friendica.git] / src / Util / Images.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2021, the Friendica project
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  */
21
22 namespace Friendica\Util;
23
24 use Friendica\Core\Logger;
25 use Friendica\Core\System;
26 use Friendica\DI;
27
28 /**
29  * Image utilities
30  */
31 class Images
32 {
33         /**
34          * Maps Mime types to Imagick formats
35          *
36          * @return array
37          */
38         public static function getFormatsMap()
39         {
40                 $m = [
41                         'image/jpeg' => 'JPG',
42                         'image/png' => 'PNG',
43                         'image/gif' => 'GIF'
44                 ];
45
46                 return $m;
47         }
48
49         /**
50          * Returns supported image mimetypes and corresponding file extensions
51          *
52          * @return array
53          */
54         public static function supportedTypes()
55         {
56                 $types = [
57                         'image/jpeg' => 'jpg'
58                 ];
59                 if (class_exists('Imagick')) {
60                         // Imagick::queryFormats won't help us a lot there...
61                         // At least, not yet, other parts of friendica uses this array
62                         $types += [
63                                 'image/png' => 'png',
64                                 'image/gif' => 'gif'
65                         ];
66                 } elseif (imagetypes() & IMG_PNG) {
67                         $types += [
68                                 'image/png' => 'png'
69                         ];
70                 }
71
72                 return $types;
73         }
74
75         /**
76          * Fetch image mimetype from the image data or guessing from the file name
77          *
78          * @param string $image_data Image data
79          * @param string $filename   File name (for guessing the type via the extension)
80          * @param string $mime       default mime type
81          *
82          * @return string
83          * @throws \Exception
84          */
85         public static function getMimeTypeByData(string $image_data, string $filename = '', string $mime = '')
86         {
87                 if (substr($mime, 0, 6) == 'image/') {
88                         Logger::info('Using default mime type', ['filename' => $filename, 'mime' => $mime]);
89                         return $mime;
90                 }
91
92                 $image = @getimagesizefromstring($image_data);
93                 if (!empty($image['mime'])) {
94                         Logger::info('Mime type detected via data', ['filename' => $filename, 'default' => $mime, 'mime' => $image['mime']]);
95                         return $image['mime'];
96                 }
97
98                 return self::guessTypeByExtension($filename);
99         }
100
101         /**
102          * Fetch image mimetype from the image data or guessing from the file name
103          *
104          * @param string $sourcefile Source file of the image
105          * @param string $filename   File name (for guessing the type via the extension)
106          * @param string $mime       default mime type
107          *
108          * @return string
109          * @throws \Exception
110          */
111         public static function getMimeTypeBySource(string $sourcefile, string $filename = '', string $mime = '')
112         {
113                 if (substr($mime, 0, 6) == 'image/') {
114                         Logger::info('Using default mime type', ['filename' => $filename, 'mime' => $mime]);
115                         return $mime;
116                 }
117
118                 $image = @getimagesize($sourcefile);
119                 if (!empty($image['mime'])) {
120                         Logger::info('Mime type detected via file', ['filename' => $filename, 'default' => $mime, 'image' => $image]);
121                         return $image['mime'];
122                 }
123
124                 return self::guessTypeByExtension($filename);
125         }
126
127         /**
128          * Guess image mimetype from the filename
129          *
130          * @param string $filename   Image filename
131          *
132          * @return string
133          * @throws \Exception
134          */
135         public static function guessTypeByExtension(string $filename)
136         {
137                 $ext = pathinfo(parse_url($filename, PHP_URL_PATH), PATHINFO_EXTENSION);
138                 $types = self::supportedTypes();
139                 $type = 'image/jpeg';
140                 foreach ($types as $m => $e) {
141                         if ($ext == $e) {
142                                 $type = $m;
143                         }
144                 }
145
146                 Logger::info('Mime type guessed via extension', ['filename' => $filename, 'type' => $type]);
147                 return $type;
148         }
149
150         /**
151          * @param string $url
152          * @return array
153          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
154          */
155         public static function getInfoFromURLCached($url)
156         {
157                 $data = [];
158
159                 if (empty($url)) {
160                         return $data;
161                 }
162
163                 $data = DI::cache()->get($url);
164
165                 if (empty($data) || !is_array($data)) {
166                         $data = self::getInfoFromURL($url);
167
168                         DI::cache()->set($url, $data);
169                 }
170
171                 return $data;
172         }
173
174         /**
175          * @param string $url
176          * @return array
177          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
178          */
179         public static function getInfoFromURL($url)
180         {
181                 $data = [];
182
183                 if (empty($url)) {
184                         return $data;
185                 }
186
187                 $img_str = DI::httpRequest()->fetch($url, 4);
188
189                 if (!$img_str) {
190                         return [];
191                 }
192
193                 $filesize = strlen($img_str);
194
195                 try {
196                         $data = @getimagesizefromstring($img_str);
197                 } catch (\Exception $e) {
198                         return [];
199                 }
200
201                 if ($data) {
202                         $data['size'] = $filesize;
203                 }
204
205                 return $data;
206         }
207
208         /**
209          * @param integer $width
210          * @param integer $height
211          * @param integer $max
212          * @return array
213          */
214         public static function getScalingDimensions($width, $height, $max)
215         {
216                 if ((!$width) || (!$height)) {
217                         return ['width' => 0, 'height' => 0];
218                 }
219
220                 if ($width > $max && $height > $max) {
221                         // very tall image (greater than 16:9)
222                         // constrain the width - let the height float.
223
224                         if ((($height * 9) / 16) > $width) {
225                                 $dest_width = $max;
226                                 $dest_height = intval(($height * $max) / $width);
227                         } elseif ($width > $height) {
228                                 // else constrain both dimensions
229                                 $dest_width = $max;
230                                 $dest_height = intval(($height * $max) / $width);
231                         } else {
232                                 $dest_width = intval(($width * $max) / $height);
233                                 $dest_height = $max;
234                         }
235                 } else {
236                         if ($width > $max) {
237                                 $dest_width = $max;
238                                 $dest_height = intval(($height * $max) / $width);
239                         } else {
240                                 if ($height > $max) {
241                                         // very tall image (greater than 16:9)
242                                         // but width is OK - don't do anything
243
244                                         if ((($height * 9) / 16) > $width) {
245                                                 $dest_width = $width;
246                                                 $dest_height = $height;
247                                         } else {
248                                                 $dest_width = intval(($width * $max) / $height);
249                                                 $dest_height = $max;
250                                         }
251                                 } else {
252                                         $dest_width = $width;
253                                         $dest_height = $height;
254                                 }
255                         }
256                 }
257
258                 return ['width' => $dest_width, 'height' => $dest_height];
259         }
260 }