Tatva-Artha

meaning of "it"

Manipulating image using RMagick

without comments

An example of manipulating image using RMagick

require 'RMagick'
image = Magick::Image.read("original.jpeg").first
image.change_geometry("100x100") do |c,r,i|
  i.resize!(c,r)
  i.write 'out.jpeg'
end
http://www.tatvartha.com/wp-content/plugins/sociofluid/images/digg_16.png http://www.tatvartha.com/wp-content/plugins/sociofluid/images/reddit_16.png http://www.tatvartha.com/wp-content/plugins/sociofluid/images/stumbleupon_16.png http://www.tatvartha.com/wp-content/plugins/sociofluid/images/delicious_16.png http://www.tatvartha.com/wp-content/plugins/sociofluid/images/google_16.png http://www.tatvartha.com/wp-content/plugins/sociofluid/images/twitter_16.png

No related posts.

Related posts brought to you by Yet Another Related Posts Plugin.

Written by Sharad

November 14th, 2009 at 5:41 am

Posted in All

Leave a Reply