blob: d1289da3370f3875cd9b9bb5d0fdb931d6a89616 [file] [log] [blame]
Matthias Andreas Benkard7b2a3a12021-08-16 10:57:25 +02001<?php
2
3/*
4 * This file is part of the Symfony package.
5 *
6 * (c) Fabien Potencier <fabien@symfony.com>
7 *
8 * For the full copyright and license information, please view the LICENSE
9 * file that was distributed with this source code.
10 */
11
12namespace Symfony\Component\VarDumper\Caster;
13
14use Imagine\Image\ImageInterface;
15use Symfony\Component\VarDumper\Cloner\Stub;
16
17/**
18 * @author Grégoire Pineau <lyrixx@lyrixx.info>
19 */
20final class ImagineCaster
21{
22 public static function castImage(ImageInterface $c, array $a, Stub $stub, bool $isNested): array
23 {
24 $imgData = $c->get('png');
25 if (\strlen($imgData) > 1 * 1000 * 1000) {
26 $a += [
27 Caster::PREFIX_VIRTUAL.'image' => new ConstStub($c->getSize()),
28 ];
29 } else {
30 $a += [
31 Caster::PREFIX_VIRTUAL.'image' => new ImgStub($imgData, 'image/png', $c->getSize()),
32 ];
33 }
34
35 return $a;
36 }
37}