Skip to content
/ tyf Public
forked from Moustikitos/tyf

Pythonic way to read and edit ifd tag files.

Notifications You must be signed in to change notification settings

domlysz/tyf

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

52 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Tyf

pypi

pypi

pypi pypi pypi

Why this package ?

Tyf package provides pythonic way to view Exif data from TIFF and JPEG files.

>>> import Tyf
>>> jpg = Tyf.open(r".\IMG_20150730_210115.jpg")
>>> tif = Tyf.open(r".\CEA.tif")
>>> geotiff = Tyf.gkd.Gkd(tif[0])
>>> print(tif[0]["ImageWidth"])
514
>>> print(jpg["GPSLatitude"])
(51.2095416, 0.0, 0.0)
>>> print(geotiff["GeographicTypeGeoKey"])
4267

Contributing

Bug report & feedback

Use project issues.

Add / modify / fix code

Guidance words: keep it simple and solid!

  1. open a issue to propose your contribution
  2. once issue is granted
  • fork this repository
  • edit your contribution
  • start a pull request

TODO

  • command line utility script
  • API documentation

About

Pythonic way to read and edit ifd tag files.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 99.4%
  • HTML 0.6%