ImboUnitTest\Image\Transformation\CropTest::getImageParams PHP Method

getImageParams() public method

Fetch different image parameters
public getImageParams ( ) : array[]
return array[]
    public function getImageParams()
    {
        return ['Do not perform work when cropping same sized images' => [['width' => 123, 'height' => 234], 123, 234, 123, 234, 0, 0, false], 'Create new cropped image #1' => [['width' => 100, 'height' => 200, 'y' => 10], 100, 400, 100, 200, 0, 10], 'Create new cropped image #2' => [['width' => 123, 'height' => 234, 'x' => 10, 'y' => 20], 200, 260, 123, 234, 10, 20]];
    }