-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathImage.php
84 lines (74 loc) · 2.05 KB
/
Image.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<?php namespace SmallTeam\ImageBundle;
use SmallTeam\ImageBundle\Engines\ImageEngineInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
/**
* Image
* */
class Image
{
/** @var ContainerInterface */
protected $container;
/** @var ImageEngineInterface */
private $engine;
/**
* Image constructor
*
* @param ContainerInterface $container
* */
public function __construct(ContainerInterface $container)
{
$this->container = $container;
$engine_class = $this->container->getParameter('smallteam_image.image_engine');
$this->engine = new $engine_class($container);
}
/**
* fitIn
*
* @param string $source
* @param string $destination
* @param string $dimensions Example: 150x150
* @param string $gravity
* @return void
* */
public function fitIn($source, $destination, $dimensions, $gravity = 'center')
{
$this->engine->fitIn($source, $destination, $dimensions, $gravity);
}
/**
* fitOut
*
* @param string $source
* @param string $destination
* @param string $dimensions Example: 150x150
* @param string $gravity
* @return void
* */
public function fitOut($source, $destination, $dimensions, $gravity = 'center')
{
$this->engine->fitOut($source, $destination, $dimensions, $gravity);
}
/**
* fitInFull
*
* @param string $source
* @param string $destination
* @param string $dimensions Example: 150x150
* @param string $gravity
* @param array $additional_process
* @return void
* */
public function fitInFull($source, $destination, $dimensions, $gravity = 'center', $additional_process = array())
{
$this->engine->fitInFull($source, $destination, $dimensions, $gravity, $additional_process);
}
/**
* getImageInfo
*
* @param string $path
* @return null|array
* */
public function getImageInfo($path)
{
return $this->engine->getImageInfo($path);
}
}