Skip to content

Instantly share code, notes, and snippets.

@gemmill
gemmill / Atkinson dither in PHP
Created July 27, 2018 23:34 — forked from lordastley/Atkinson dither in PHP
1-bit Atkinson dither in PHP with GD
<?php
$img = imagecreatefromjpeg('./delayclose.jpg');
imagefilter($img, IMG_FILTER_GRAYSCALE);
$width = imagesx($img);
$height = imagesy($img);
$img_arr = array();
// Parse image (can be combined with dither stage, but combining them is slower.)