Skip to content

Instantly share code, notes, and snippets.

@bcho
Created July 27, 2012 13:17
Show Gist options
  • Save bcho/3187869 to your computer and use it in GitHub Desktop.
Save bcho/3187869 to your computer and use it in GitHub Desktop.
#coding: utf-8
from color import _color_quantization
from color import _save_image, _get_hex_palette
from color import image
cq = _color_quantization(image, 8)
_save_image(cq, 'cq.png')
cq_palette = _get_hex_palette(cq, 8)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment