Skip to content

Instantly share code, notes, and snippets.

@ruanwz
Created February 17, 2011 08:57
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 ruanwz/831334 to your computer and use it in GitHub Desktop.
Save ruanwz/831334 to your computer and use it in GitHub Desktop.
require 'rubygems'
require 'mini_magick'
#curl "http://maps.google.com/maps/api/staticmap?center=广州+天河区+科韵路+广州信息港A栋&size=600x640&maptype=satellite&sensor=false" > abc.png
image = MiniMagick::Image.open("abc.png")
image.colorspace('Gray')
image.colors(16)
image.write "bcd.png"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment