You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

BlackAndWhiteFilter.php 370B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: robin
  5. * Date: 4/22/16
  6. * Time: 7:57 PM
  7. */
  8. namespace App\Http\Business\Filters;
  9. class BlackAndWhiteFilter extends AbstractSimpleFilter
  10. {
  11. protected function applyPixel($pixel)
  12. {
  13. $g = GrayScaleFilter::toGrayScale($pixel);
  14. $g = ($g < 127 ? 0 : 255);
  15. $pixel->setColor("rgb($g, $g, $g)");
  16. }
  17. }