Project

ruby-exiv2

0.0
No commit activity in last 3 years
No release in over 3 years
Exiv2 (exif image tags handling) library driver
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies
 Project Readme
Library for handling exif image tags.

Basic usage:

  > gem install RubyInline
	> gem install ruby-exiv2
	> irb -r rubygems
	
	require 'exiv2'
	@img = Exiv2::Image.new("a.jpg")
	puts @img["Exif.Photo.PixelXDimension"]
	@img["Exif.Photo.PixelXDimension"] = 2048
	@img.save

Version 1.3 introduces dynamic accessors:

    require 'exiv2'
    @img = Exiv2::Image.new("a.jpg")
    puts @img.Exif.Photo.PixelXDimension
	@img.Exif.Photo.PixelXDimension = 2048
	@img.save