class ExifTagger::Tag::Creator

MWG:Creator, string+, List of strings

EXIF:Artist, IPTC:By-line, XMP-dc:Creator

exiftool types:

Artist = String "aaa; bbb"
By-line = Array ["aaa", "bbb"] OR String "aaa"
Creator = Array ["aaa", "bbb"] OR String "aaa"

Constants

EXIFTOOL_TAGS
MAX_BYTESIZE

Private Instance Methods

generate_write_script_lines() click to toggle source
# File lib/phtools/exif_tagger/tags/creator.rb, line 23
def generate_write_script_lines
  @value.each do |o|
    unless Tag.empty?(o)
      @write_script_lines << %(-MWG:Creator-=#{o})
      @write_script_lines << %(-MWG:Creator+=#{o})
    end
  end
end