ImboIntegrationTest\Image\Transformation\ResizeTest::getResizeParams PHP Method

getResizeParams() public method

Data provider
public getResizeParams ( ) : array[]
return array[]
    public function getResizeParams()
    {
        return ['only width' => ['params' => ['width' => 100], 'transformation' => true, 'resizedWidth' => 100, 'resizedHeight' => 70], 'only height' => ['params' => ['height' => 100], 'transformation' => true, 'resizedWidth' => 144, 'resizedHeight' => 100], 'width and height' => ['params' => ['width' => 100, 'height' => 200], 'transformation' => true, 'resizedWidth' => 100, 'resizedHeight' => 200], 'params match image size' => ['params' => ['width' => 665, 'height' => 463], 'transformation' => false]];
    }