ImboIntegrationTest\Image\Transformation\CropTest::getCropParams PHP Method

getCropParams() public method

Data provider
public getCropParams ( ) : array[]
return array[]
    public function getCropParams()
    {
        return ['cropped area smaller than the image' => [['width' => 100, 'height' => 50], 100, 50, true], 'cropped area smaller than the image with x and y offset' => [['width' => 100, 'height' => 63, 'x' => 565, 'y' => 400], 100, 63, true], 'center mode' => [['mode' => 'center', 'width' => 150, 'height' => 100], 150, 100, true], 'center-x mode' => [['mode' => 'center-x', 'y' => 10, 'width' => 50, 'height' => 40], 50, 40, true], 'center-y mode' => [['mode' => 'center-y', 'x' => 10, 'width' => 50, 'height' => 40], 50, 40, true]];
    }