eZ\Bundle\EzPublishCoreBundle\Imagine\Filter\Loader\ScaleWidthFilterLoader::load PHP Method

load() public method

public load ( Imagine\Image\ImageInterface $image, array $options = [] )
$image Imagine\Image\ImageInterface
$options array
    public function load(ImageInterface $image, array $options = array())
    {
        if (empty($options)) {
            throw new InvalidArgumentException('Missing width option');
        }
        return $this->innerLoader->load($image, array('widen' => $options[0]));
    }

Usage Example

 public function testLoad()
 {
     $width = 123;
     $image = $this->getMock('\\Imagine\\Image\\ImageInterface');
     $this->innerLoader->expects($this->once())->method('load')->with($image, $this->equalTo(array('widen' => $width)))->will($this->returnValue($image));
     $this->assertSame($image, $this->loader->load($image, array($width)));
 }
ScaleWidthFilterLoader