|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
namespace Graze\CiffRenderer\Renderer\FieldRenderer; |
|
4
|
|
|
|
|
5
|
|
|
use Graze\CiffRenderer\Renderer\FieldRenderer\FieldRendererInterface; |
|
6
|
|
|
use Graze\CiffRenderer\Parser\FieldParser\FieldParserInterface; |
|
7
|
|
|
use Intervention\Image\ImageManager; |
|
8
|
|
|
use Intervention\Image\Gd\Font; |
|
9
|
|
|
|
|
10
|
|
|
class FieldRendererFixedText implements FieldRendererInterface |
|
11
|
|
|
{ |
|
12
|
|
|
const FONT_SIZE_MULTIPLIER = 4.2; |
|
13
|
|
|
|
|
14
|
|
|
const LETTER_SPACING_ADJUSTMENT = 0.97; |
|
15
|
|
|
|
|
16
|
|
|
/** |
|
17
|
|
|
* @var Font |
|
18
|
|
|
*/ |
|
19
|
|
|
private $font; |
|
20
|
|
|
|
|
21
|
|
|
/** |
|
22
|
|
|
* @param Font $font |
|
23
|
|
|
*/ |
|
24
|
2 |
|
public function __construct(Font $font) |
|
25
|
|
|
{ |
|
26
|
2 |
|
$this->font = $font; |
|
27
|
2 |
|
} |
|
28
|
|
|
|
|
29
|
|
|
/** |
|
30
|
|
|
* @param ImageManager $imageManager |
|
31
|
|
|
* @param FieldParserInterface $parser |
|
32
|
|
|
* @param callable $fontResolver |
|
|
|
|
|
|
33
|
|
|
* @param callable $graphicResolver |
|
|
|
|
|
|
34
|
|
|
* @return Intervention\Image\Image |
|
|
|
|
|
|
35
|
|
|
*/ |
|
36
|
1 |
|
public function render( |
|
37
|
|
|
ImageManager $imageManager, |
|
38
|
|
|
FieldParserInterface $parser, |
|
39
|
|
|
callable $fontResolver = null, |
|
40
|
|
|
callable $graphicResolver = null |
|
41
|
|
|
) { |
|
42
|
|
|
// create the text here so it can be measured |
|
43
|
1 |
|
$this->font->text($parser->getText()); |
|
|
|
|
|
|
44
|
1 |
|
$this->font->file($fontResolver($parser->getFontFace())); |
|
|
|
|
|
|
45
|
1 |
|
$this->font->size($parser->getFontSize() * self::FONT_SIZE_MULTIPLIER); |
|
|
|
|
|
|
46
|
1 |
|
$this->font->color('#000'); |
|
47
|
1 |
|
$this->font->valign('top'); |
|
48
|
|
|
|
|
49
|
1 |
|
$fontCallback = function (&$font) { |
|
50
|
|
|
// override the font created by Canvas::text() |
|
51
|
1 |
|
$font = $this->font; |
|
52
|
1 |
|
}; |
|
53
|
|
|
|
|
54
|
1 |
|
$size = $this->font->getBoxSize(); |
|
55
|
1 |
|
$image = $imageManager->canvas($size['width'], $size['height']); |
|
56
|
1 |
|
$image->text('', null, null, $fontCallback); |
|
57
|
1 |
|
$image->resize($size['width'] * self::LETTER_SPACING_ADJUSTMENT, $size['height']); |
|
58
|
|
|
|
|
59
|
1 |
|
$oriontation = $parser->getOrientation(); |
|
|
|
|
|
|
60
|
1 |
|
if ($oriontation) { |
|
61
|
1 |
|
$image->rotate(360 - $oriontation); |
|
62
|
1 |
|
} |
|
63
|
|
|
|
|
64
|
1 |
|
return $image; |
|
|
|
|
|
|
65
|
|
|
} |
|
66
|
|
|
|
|
67
|
|
|
/** |
|
68
|
|
|
* @return FieldParserInterface |
|
|
|
|
|
|
69
|
|
|
*/ |
|
70
|
1 |
|
public static function factory() |
|
71
|
|
|
{ |
|
72
|
1 |
|
return new static( |
|
|
|
|
|
|
73
|
1 |
|
new Font() |
|
74
|
1 |
|
); |
|
75
|
|
|
} |
|
76
|
|
|
} |
|
77
|
|
|
|
This check looks for
@paramannotations where the type inferred by our type inference engine differs from the declared type.It makes a suggestion as to what type it considers more descriptive.
Most often this is a case of a parameter that can be null in addition to its declared types.