Skip to content

Instantly share code, notes, and snippets.

View shaunkardinal's full-sized avatar

Shaun Kardinal shaunkardinal

View GitHub Profile
@lordastley
lordastley / Atkinson dither in PHP
Created November 6, 2011 09:08
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.)