<?php
namespace InterventionImageGdCommands;
class InvertCommand extends InterventionImageCommandsAbstractCommand
{
/**
* Inverts colors of an image
*
* @param InterventionImageImage $image
* @return boolean
*/
public function execute($image)
{
return imagefilter($image->getCore(), IMG_FILTER_NEGATE);
}
}