Skip to content

Instantly share code, notes, and snippets.

Created March 21, 2015 08:22
Show Gist options
  • Save anonymous/fff6bd7e3cfc4262285b to your computer and use it in GitHub Desktop.
Save anonymous/fff6bd7e3cfc4262285b to your computer and use it in GitHub Desktop.
tegaki で点描
require 'RMagick'
require 'auto_click'
offset = {
:x => 400,
:y => 200,
}
sleep 3
img = Magick::Image::read('2bit_10_078.png').first
img.each_pixel do |pixel, c, r|
if pixel.to_color == 'black'
mouse_move(c * 2 + offset[:x], r * 2 + offset[:y])
left_click()
sleep 0.1
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment