From: Gregory Seidman Date: 2006-03-11T02:46:25+09:00 Subject: A success story No, this isn't some story about a successful enterprise-level intranet/extranet web portal solution done entirely in Ruby (and Rails). This is just a story of quick success in doing a simple task. Problem: I wanted to create images of a web-suitable size from the images in one of my wife's iPhoto albums without taking over my wife's computer (e.g. VNC over ssh to take control) since she was using it at the time. Solution: % sudo gem install -r -y iphoto2 Ruby script (listalbum): #!/usr/bin/env ruby require 'rubygems' require 'iphoto2' if ARGV.length == 1 data = IPhoto2.new(ARGV[0]) data.albums.each { |a| puts a.name } elsif ARGV.length == 2 data = IPhoto2.new(ARGV[0]) album = data.albums.select { |a| a.name == ARGV[1] } fail "Could not find an album named '#{ARGV[1]}'" unless album.length == 1 album = album[0] album.images.each { |img| puts img.path } else fail "Usage: #{__FILE__} [album name]" end % mkdir /tmp/pics % listalbum AlbumData.xml 'Our Cats' | tr '\012' '\000' | xargs -0 -Jx cp x /tmp/pics % mogrify -resize '1024>' /tmp/pics/* ############### So yeah, I'm pleased. Mainly I'm pleased that the iphoto2 gem exists and Just Works, but I'm pleased with how easily I did all this. I neglected to mention that this mostly (the listalbum and the mogrify) happened on a Linux box, and the Mac just supplied the AlbumData.xml and JPG files. --Greg