Created
March 21, 2015 08:22
-
-
Save anonymous/fff6bd7e3cfc4262285b to your computer and use it in GitHub Desktop.
tegaki で点描
This file contains hidden or 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 '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