Skip to content

Instantly share code, notes, and snippets.

@campanalbero
Created September 2, 2014 17:19
Show Gist options
  • Save campanalbero/2a80b7025c4d33cb2432 to your computer and use it in GitHub Desktop.
Save campanalbero/2a80b7025c4d33cb2432 to your computer and use it in GitHub Desktop.
ruby で exiftool を使って、FROM_FILE の EXIF データを TO_FILE に全部コピペする
require 'mini_exiftool'
exif = MiniExiftool.new(TO_FILE)
exif.copy_tags_from(FROM_FILE, 'all')
exif.save
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment