Created
April 18, 2011 08:34
-
-
Save jeffkreeftmeijer/924996 to your computer and use it in GitHub Desktop.
Image difference blend
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'chunky_png' | |
include ChunkyPNG::Color | |
images = [ | |
ChunkyPNG::Image.from_file('1.png'), | |
ChunkyPNG::Image.from_file('2.png') | |
] | |
images.first.height.times do |y| | |
images.first.row(y).each_with_index do |pixel, x| | |
images.last[x,y] = rgb( | |
r(pixel) + r(images.last[x,y]) - 2 * [r(pixel), r(images.last[x,y])].min, | |
g(pixel) + g(images.last[x,y]) - 2 * [g(pixel), g(images.last[x,y])].min, | |
b(pixel) + b(images.last[x,y]) - 2 * [b(pixel), b(images.last[x,y])].min | |
) | |
end | |
end | |
images.last.save('diff.png') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment