Skip to content

Instantly share code, notes, and snippets.

@rstacruz
Created June 28, 2011 11:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rstacruz/fbc96d01b30d0565531e to your computer and use it in GitHub Desktop.
Save rstacruz/fbc96d01b30d0565531e to your computer and use it in GitHub Desktop.
Mosaic
require 'chunky_png'
image = ChunkyPNG::Image.from_file('input.png')
(0...image.width).each do |x|
(0...image.height).each do |y|
image[x, y] = image[x/10*10, y/10*10]
end
end
image.save('output.png')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment