Просмотр файла vendor/intervention/image/src/Intervention/Image/Imagick/Commands/InvertCommand.php

Размер файла: 362B
<?php

namespace Intervention\Image\Imagick\Commands;

class InvertCommand extends \Intervention\Image\Commands\AbstractCommand
{
    /**
     * Inverts colors of an image
     *
     * @param  \Intervention\Image\Image $image
     * @return boolean
     */
    public function execute($image)
    {
        return $image->getCore()->negateImage(false);
    }
}