Skip to content

Commit

Permalink
Edit document. [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
hMatoba committed Mar 2, 2015
1 parent 61f3d33 commit b6f7506
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions doc/appendices.rst
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,13 @@ Exif in piexif example is below.

::

zeroth_ifd = {piexif.ImageIFD.Make: u"Canon", # ASCII, count any
zeroth_ifd = {piexif.ImageIFD.Make: "Canon", # ASCII, count any
piexif.ImageIFD.XResolution: (96, 1), # RATIONAL, count 1
piexif.ImageIFD.YResolution: (96, 1), # RATIONAL, count 1
piexif.ImageIFD.Software: u"piexif" # ASCII, count any
piexif.ImageIFD.Software: "piexif" # ASCII, count any
}
exif_ifd = {piexif.ExifIFD.ExifVersion: b"\x02\x00\x00\x00" # UNDEFINED, count 4
piexif.ExifIFD.LensMake: u"LensMake", # ASCII, count any
piexif.ExifIFD.LensMake: "LensMake", # ASCII, count any
piexif.ExifIFD.Sharpness: 65535, # SHORT, count 1 ... also be accepted '(65535,)'
piexif.ExifIFD.LensSpecification: ((1, 1), (1, 1), (1, 1), (1, 1)), # Rational, count 4
}
Expand Down

0 comments on commit b6f7506

Please sign in to comment.