1
0
mirror of https://github.com/Intervention/image.git synced 2025-08-29 00:29:55 +02:00

allow intervention to use own drivers

This commit is contained in:
Frederik Bosch
2017-01-18 20:35:45 +01:00
parent 2bce9a59c4
commit 9729f0ef21
2 changed files with 26 additions and 5 deletions

View File

@@ -100,15 +100,25 @@ class ImageManager
*/
private function createDriver()
{
$drivername = ucfirst($this->config['driver']);
$driverclass = sprintf('Intervention\\Image\\%s\\Driver', $drivername);
if (is_string($this->config['driver'])) {
$drivername = ucfirst($this->config['driver']);
$driverclass = sprintf('Intervention\\Image\\%s\\Driver', $drivername);
if (class_exists($driverclass)) {
return new $driverclass;
if (class_exists($driverclass)) {
return new $driverclass;
}
throw new \Intervention\Image\Exception\NotSupportedException(
"Driver ({$drivername}) could not be instantiated."
);
}
if ($this->config['driver'] instanceof AbstractDriver) {
return $this->config['driver'];
}
throw new \Intervention\Image\Exception\NotSupportedException(
"Driver ({$drivername}) could not be instantiated."
"Unknown driver type."
);
}

View File

@@ -1,5 +1,6 @@
<?php
use Intervention\Image\Image;
use Intervention\Image\ImageManager;
class ImageManagerTest extends PHPUnit_Framework_TestCase
@@ -26,4 +27,14 @@ class ImageManagerTest extends PHPUnit_Framework_TestCase
$this->assertEquals('foo', $manager->config['driver']);
$this->assertEquals('baz', $manager->config['bar']);
}
public function testConfigureObject()
{
$config = array('driver' => new Intervention\Image\Imagick\Driver());
$manager = new ImageManager($config);
$image = $manager->make('data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7');
$this->assertInstanceOf(Image::class, $image);
$this->assertInstanceOf(Imagick::class, $image->getCore());
}
}