autowp/image

View on GitHub
src/Processor/Negate.php

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
<?php

declare(strict_types=1);

namespace Autowp\Image\Processor;

use Imagick;

class Negate extends AbstractProcessor
{
    public function process(Imagick $imagick): void
    {
        $imagick->negateImage(true);
    }
}