Passed
Pull Request — master (#2013)
by Arnaud
19:32 queued 05:17
created

Image::manager()   A

Complexity

Conditions 5
Paths 3

Size

Total Lines 10
Code Lines 5

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 3
CRAP Score 8.125

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 5
eloc 5
c 1
b 0
f 0
nc 3
nop 0
dl 0
loc 10
ccs 3
cts 6
cp 0.5
crap 8.125
rs 9.6111
1
<?php
2
3
declare(strict_types=1);
4
5
/*
6
 * This file is part of Cecil.
7
 *
8
 * Copyright (c) Arnaud Ligny <[email protected]>
9
 *
10
 * For the full copyright and license information, please view the LICENSE
11
 * file that was distributed with this source code.
12
 */
13
14
namespace Cecil\Assets;
15
16
use Cecil\Exception\RuntimeException;
17
use Intervention\Image\Encoders\AutoEncoder;
18
use Intervention\Image\ImageManager;
19
20
class Image
21
{
22
    /**
23
     * Create new manager instance with desired driver.
24
     */
25 1
    private static function manager(): ImageManager
26
    {
27 1
        if (\extension_loaded('gd') && \function_exists('gd_info')) {
28 1
            return ImageManager::gd();
29
        }
30
        if (\extension_loaded('imagick') && class_exists('Imagick')) {
31
            return ImageManager::imagick();
32
        }
33
34
        throw new RuntimeException('PHP GD extension is required.');
35
    }
36
37
    /**
38
     * Resize an image Asset.
39
     *
40
     * @throws RuntimeException
41
     */
42 1
    public static function resize(Asset $asset, int $width, int $quality): string
43
    {
44
        try {
45
            // is image Asset?
46 1
            if ($asset['type'] !== 'image') {
47
                throw new RuntimeException(sprintf('Not an image.'));
48
            }
49
            // creates image object from source
50 1
            $image = self::manager()->read($asset['content_source']);
51
            // resizes to $width with constraint the aspect-ratio and unwanted upsizing
52 1
            $image->scaleDown(width: $width);
53
            // return image data
54 1
            return (string) $image->encodeByMediaType($asset['subtype'], progressive: true, interlaced: true, quality: $quality);
0 ignored issues
show
Bug introduced by
true of type true is incompatible with the type Intervention\Image\MediaType|null|string expected by parameter $type of Intervention\Image\Inter...ce::encodeByMediaType(). ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-type  annotation

54
            return (string) $image->encodeByMediaType($asset['subtype'], /** @scrutinizer ignore-type */ progressive: true, interlaced: true, quality: $quality);
Loading history...
55
        } catch (\Exception $e) {
56
            throw new RuntimeException(sprintf('Not able to resize "%s": %s', $asset['path'], $e->getMessage()));
57
        }
58
    }
59
60
    /**
61
     * Converts an image Asset to the target format.
62
     *
63
     * @throws RuntimeException
64
     */
65 1
    public static function convert(Asset $asset, string $format, int $quality): string
66
    {
67
        try {
68 1
            if ($asset['type'] !== 'image') {
69
                throw new RuntimeException(sprintf('Not an image.'));
70
            }
71 1
            $image = self::manager()->read($asset['content']);
72
73 1
            if (!function_exists("image$format")) {
74 1
                throw new RuntimeException(sprintf('Function "image%s" is not available.', $format));
75
            }
76
77
            return (string) $image->encodeByExtension($format, progressive: true, interlaced: true, quality: $quality);
0 ignored issues
show
Bug introduced by
true of type true is incompatible with the type Intervention\Image\FileExtension|null|string expected by parameter $extension of Intervention\Image\Inter...ce::encodeByExtension(). ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-type  annotation

77
            return (string) $image->encodeByExtension($format, /** @scrutinizer ignore-type */ progressive: true, interlaced: true, quality: $quality);
Loading history...
78 1
        } catch (\Exception $e) {
79 1
            throw new RuntimeException(sprintf('Not able to convert "%s": %s', $asset['path'], $e->getMessage()));
80
        }
81
    }
82
83
    /**
84
     * Returns the Data URL (encoded in Base64).
85
     *
86
     * @throws RuntimeException
87
     */
88 1
    public static function getDataUrl(Asset $asset, int $quality): string
89
    {
90
        try {
91 1
            if ($asset['type'] != 'image' || self::isSVG($asset)) {
92
                throw new RuntimeException(sprintf('Not an image.'));
93
            }
94 1
            $image = self::manager()->read($asset['content']);
95
96 1
            return (string) $image->encode(new AutoEncoder(quality: $quality))->toDataUri();
97
        } catch (\Exception $e) {
98
            throw new RuntimeException(sprintf('Can\'t get Data URL of "%s": %s', $asset['path'], $e->getMessage()));
99
        }
100
    }
101
102
    /**
103
     * Returns the dominant hexadecimal color of an image asset.
104
     *
105
     * @throws RuntimeException
106
     */
107 1
    public static function getDominantColor(Asset $asset): string
108
    {
109
        try {
110 1
            if ($asset['type'] != 'image' || self::isSVG($asset)) {
111
                throw new RuntimeException(sprintf('Not an image.'));
112
            }
113 1
            $assetColor = clone $asset;
114 1
            $assetColor = $assetColor->resize(100);
115 1
            $image = self::manager()->read($assetColor['content']);
116
117 1
            return $image->reduceColors(1)->pickColor(0, 0)->toHex();
118
        } catch (\Exception $e) {
119
            throw new RuntimeException(sprintf('Can\'t get dominant color of "%s": %s', $asset['path'], $e->getMessage()));
120
        }
121
    }
122
123
    /**
124
     * Returns a Low Quality Image Placeholder (LQIP) as data URL.
125
     *
126
     * @throws RuntimeException
127
     */
128 1
    public static function getLqip(Asset $asset): string
129
    {
130
        try {
131 1
            if ($asset['type'] !== 'image') {
132
                throw new RuntimeException(sprintf('Not an image.'));
133
            }
134 1
            $assetLqip = clone $asset;
135 1
            $assetLqip = $assetLqip->resize(100);
136 1
            $image = self::manager()->read($assetLqip['content']);
137
138 1
            return (string) $image->blur(50)->encode()->toDataUri();
139
        } catch (\Exception $e) {
140
            throw new RuntimeException(sprintf('can\'t create LQIP of "%s": %s', $asset['path'], $e->getMessage()));
141
        }
142
    }
143
144
    /**
145
     * Build the `srcset` attribute for responsive images.
146
     * e.g.: `srcset="/img-480.jpg 480w, /img-800.jpg 800w"`.
147
     *
148
     * @throws RuntimeException
149
     */
150 1
    public static function buildSrcset(Asset $asset, array $widths): string
151
    {
152 1
        if ($asset['type'] !== 'image') {
153
            throw new RuntimeException(sprintf('can\'t build "srcset" of "%s": it\'s not an image file.', $asset['path']));
154
        }
155
156 1
        $srcset = '';
157 1
        $widthMax = 0;
158 1
        foreach ($widths as $width) {
159 1
            if ($asset['width'] < $width) {
160 1
                break;
161
            }
162 1
            $img = $asset->resize($width);
163 1
            $srcset .= sprintf('%s %sw, ', (string) $img, $width);
164 1
            $widthMax = $width;
165
        }
166
        // adds source image
167 1
        if (!empty($srcset) && ($asset['width'] < max($widths) && $asset['width'] != $widthMax)) {
168 1
            $srcset .= sprintf('%s %sw', (string) $asset, $asset['width']);
169
        }
170
171 1
        return rtrim($srcset, ', ');
172
    }
173
174
    /**
175
     * Returns the value of the "sizes" attribute corresponding to the configured class.
176
     */
177 1
    public static function getSizes(string $class, array $sizes = []): string
178
    {
179 1
        $result = '';
180 1
        $classArray = explode(' ', $class);
181 1
        foreach ($classArray as $class) {
182 1
            if (\array_key_exists($class, $sizes)) {
183 1
                $result = $sizes[$class] . ', ';
184
            }
185
        }
186 1
        if (!empty($result)) {
187 1
            return trim($result, ', ');
188
        }
189
190 1
        return $sizes['default'] ?? '100vw';
191
    }
192
193
    /**
194
     * Checks if an asset is an animated GIF.
195
     */
196 1
    public static function isAnimatedGif(Asset $asset): bool
197
    {
198
        // an animated GIF contains multiple "frames", with each frame having a header made up of:
199
        // 1. a static 4-byte sequence (\x00\x21\xF9\x04)
200
        // 2. 4 variable bytes
201
        // 3. a static 2-byte sequence (\x00\x2C)
202 1
        $count = preg_match_all('#\x00\x21\xF9\x04.{4}\x00[\x2C\x21]#s', (string) $asset['content_source']);
203
204 1
        return $count > 1;
205
    }
206
207
    /**
208
     * Returns true if asset is a SVG.
209
     */
210 1
    public static function isSVG(Asset $asset): bool
211
    {
212 1
        return \in_array($asset['subtype'], ['image/svg', 'image/svg+xml']) || $asset['ext'] == 'svg';
213
    }
214
215
    /**
216
     * Returns SVG attributes.
217
     *
218
     * @return \SimpleXMLElement|false
219
     */
220 1
    public static function getSvgAttributes(Asset $asset)
221
    {
222 1
        if (!self::isSVG($asset)) {
223
            return false;
224
        }
225
226 1
        if (false === $xml = simplexml_load_string($asset['content_source'] ?? '')) {
227
            return false;
228
        }
229
230 1
        return $xml->attributes();
231
    }
232
}
233