diff --git a/src/Intervention/Image/Imagick/Commands/FitCommand.php b/src/Intervention/Image/Imagick/Commands/FitCommand.php index 17070c28..539777bd 100644 --- a/src/Intervention/Image/Imagick/Commands/FitCommand.php +++ b/src/Intervention/Image/Imagick/Commands/FitCommand.php @@ -23,7 +23,7 @@ class FitCommand extends \Intervention\Image\Commands\AbstractCommand ); // resize image - $image->getCore()->resizeImage($width, $height, \Imagick::FILTER_CATROM, 1); + $image->getCore()->resizeImage($width, $height, \Imagick::FILTER_BOX, 1); $image->getCore()->setImagePage(0,0,0,0); return true; diff --git a/src/Intervention/Image/Imagick/Commands/ResizeCommand.php b/src/Intervention/Image/Imagick/Commands/ResizeCommand.php index b3923db6..b3e2b889 100644 --- a/src/Intervention/Image/Imagick/Commands/ResizeCommand.php +++ b/src/Intervention/Image/Imagick/Commands/ResizeCommand.php @@ -14,7 +14,7 @@ class ResizeCommand extends \Intervention\Image\Commands\AbstractCommand $resized = $image->getSize()->resize($width, $height, $constraints); // modify image - $image->getCore()->resizeImage($resized->getWidth(), $resized->getHeight(), \Imagick::FILTER_CATROM, 1); + $image->getCore()->resizeImage($resized->getWidth(), $resized->getHeight(), \Imagick::FILTER_BOX, 1); return true; } diff --git a/tests/FitCommandTest.php b/tests/FitCommandTest.php index c3cc8763..ec2cdccb 100644 --- a/tests/FitCommandTest.php +++ b/tests/FitCommandTest.php @@ -36,7 +36,7 @@ class FitCommandTest extends PHPUnit_Framework_TestCase $original_size->shouldReceive('fit')->once()->andReturn($fitted_size); $imagick = Mockery::mock('Imagick'); $imagick->shouldReceive('cropimage')->with(800, 400, 0, 100)->andReturn(true); - $imagick->shouldReceive('resizeimage')->with(200, 100, \Imagick::FILTER_CATROM, 1)->andReturn(true); + $imagick->shouldReceive('resizeimage')->with(200, 100, \Imagick::FILTER_BOX, 1)->andReturn(true); $imagick->shouldReceive('setimagepage')->with(0, 0, 0, 0)->andReturn(true); $image = Mockery::mock('Intervention\Image\Image'); $image->shouldReceive('getSize')->once()->andReturn($original_size); diff --git a/tests/HeightenCommandTest.php b/tests/HeightenCommandTest.php index 2279781f..ff13ae90 100644 --- a/tests/HeightenCommandTest.php +++ b/tests/HeightenCommandTest.php @@ -33,7 +33,7 @@ class HeightenCommandTest extends PHPUnit_Framework_TestCase { $callback = function ($constraint) { $constraint->upsize(); }; $imagick = Mockery::mock('Imagick'); - $imagick->shouldReceive('resizeimage')->with(300, 200, \Imagick::FILTER_CATROM, 1)->once()->andReturn(true); + $imagick->shouldReceive('resizeimage')->with(300, 200, \Imagick::FILTER_BOX, 1)->once()->andReturn(true); $size = Mockery::mock('Intervention\Image\Size', array(800, 600)); $size->shouldReceive('resize')->once()->andReturn($size); $size->shouldReceive('getWidth')->once()->andReturn(300); diff --git a/tests/ResizeCommandTest.php b/tests/ResizeCommandTest.php index 219f7471..56cdcb39 100644 --- a/tests/ResizeCommandTest.php +++ b/tests/ResizeCommandTest.php @@ -33,7 +33,7 @@ class resizeCommandTest extends PHPUnit_Framework_TestCase { $callback = function ($constraint) { $constraint->upsize(); }; $imagick = Mockery::mock('Imagick'); - $imagick->shouldReceive('resizeimage')->with(300, 200, \Imagick::FILTER_CATROM, 1)->once()->andReturn(true); + $imagick->shouldReceive('resizeimage')->with(300, 200, \Imagick::FILTER_BOX, 1)->once()->andReturn(true); $size = Mockery::mock('Intervention\Image\Size', array(800, 600)); $size->shouldReceive('resize')->with(300, 200, $callback)->once()->andReturn($size); $size->shouldReceive('getWidth')->once()->andReturn(300); diff --git a/tests/WidenCommandTest.php b/tests/WidenCommandTest.php index 2ca40a4a..ce5b3042 100644 --- a/tests/WidenCommandTest.php +++ b/tests/WidenCommandTest.php @@ -33,7 +33,7 @@ class WidenCommandTest extends PHPUnit_Framework_TestCase { $callback = function ($constraint) { $constraint->upsize(); }; $imagick = Mockery::mock('Imagick'); - $imagick->shouldReceive('resizeimage')->with(300, 200, \Imagick::FILTER_CATROM, 1)->once()->andReturn(true); + $imagick->shouldReceive('resizeimage')->with(300, 200, \Imagick::FILTER_BOX, 1)->once()->andReturn(true); $size = Mockery::mock('Intervention\Image\Size', array(800, 600)); $size->shouldReceive('resize')->once()->andReturn($size); $size->shouldReceive('getWidth')->once()->andReturn(300);