TiffTags
index
/Library/Python/2.7/site-packages/PIL/TiffTags.py

# The Python Imaging Library.
# $Id$
#
# TIFF tags
#
# This module provides clear-text names for various well-known
# TIFF tags.  the TIFF codec works just fine without it.
#
# Copyright (c) Secret Labs AB 1999.
#
# See the README file for information on usage and redistribution.
#

 
Data
        TAGS = {254: 'NewSubfileType', 255: 'SubfileType', 256: 'ImageWidth', 257: 'ImageLength', 258: 'BitsPerSample', 259: 'Compression', 262: 'PhotometricInterpretation', 263: 'Thresholding', 264: 'CellWidth', 265: 'CellHeight', ...}
TYPES = {1: 'byte', 2: 'ascii', 3: 'short', 4: 'long', 5: 'rational', 6: 'signed byte', 7: 'undefined', 8: 'signed short', 9: 'signed long', 10: 'signed rational', ...}