mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-01-27 09:44:31 +03:00
Replaced annoying tabs within code
This commit is contained in:
parent
e597ca1a59
commit
f92ede6d8c
|
@ -105,13 +105,13 @@ class SunImageFile(ImageFile.ImageFile):
|
||||||
# file type: Type is the version (or flavor) of the bitmap
|
# file type: Type is the version (or flavor) of the bitmap
|
||||||
# file. The following values are typically found in the Type
|
# file. The following values are typically found in the Type
|
||||||
# field:
|
# field:
|
||||||
# 0000h Old
|
# 0000h Old
|
||||||
# 0001h Standard
|
# 0001h Standard
|
||||||
# 0002h Byte-encoded
|
# 0002h Byte-encoded
|
||||||
# 0003h RGB format
|
# 0003h RGB format
|
||||||
# 0004h TIFF format
|
# 0004h TIFF format
|
||||||
# 0005h IFF format
|
# 0005h IFF format
|
||||||
# FFFFh Experimental
|
# FFFFh Experimental
|
||||||
|
|
||||||
# Old and standard are the same, except for the length tag.
|
# Old and standard are the same, except for the length tag.
|
||||||
# byte-encoded is run-length-encoded
|
# byte-encoded is run-length-encoded
|
||||||
|
|
|
@ -377,44 +377,44 @@ TYPES = {}
|
||||||
# adding to the custom dictionary. From tif_dir.c, searching for
|
# adding to the custom dictionary. From tif_dir.c, searching for
|
||||||
# case TIFFTAG in the _TIFFVSetField function:
|
# case TIFFTAG in the _TIFFVSetField function:
|
||||||
# Line: item.
|
# Line: item.
|
||||||
# 148: case TIFFTAG_SUBFILETYPE:
|
# 148: case TIFFTAG_SUBFILETYPE:
|
||||||
# 151: case TIFFTAG_IMAGEWIDTH:
|
# 151: case TIFFTAG_IMAGEWIDTH:
|
||||||
# 154: case TIFFTAG_IMAGELENGTH:
|
# 154: case TIFFTAG_IMAGELENGTH:
|
||||||
# 157: case TIFFTAG_BITSPERSAMPLE:
|
# 157: case TIFFTAG_BITSPERSAMPLE:
|
||||||
# 181: case TIFFTAG_COMPRESSION:
|
# 181: case TIFFTAG_COMPRESSION:
|
||||||
# 202: case TIFFTAG_PHOTOMETRIC:
|
# 202: case TIFFTAG_PHOTOMETRIC:
|
||||||
# 205: case TIFFTAG_THRESHHOLDING:
|
# 205: case TIFFTAG_THRESHHOLDING:
|
||||||
# 208: case TIFFTAG_FILLORDER:
|
# 208: case TIFFTAG_FILLORDER:
|
||||||
# 214: case TIFFTAG_ORIENTATION:
|
# 214: case TIFFTAG_ORIENTATION:
|
||||||
# 221: case TIFFTAG_SAMPLESPERPIXEL:
|
# 221: case TIFFTAG_SAMPLESPERPIXEL:
|
||||||
# 228: case TIFFTAG_ROWSPERSTRIP:
|
# 228: case TIFFTAG_ROWSPERSTRIP:
|
||||||
# 238: case TIFFTAG_MINSAMPLEVALUE:
|
# 238: case TIFFTAG_MINSAMPLEVALUE:
|
||||||
# 241: case TIFFTAG_MAXSAMPLEVALUE:
|
# 241: case TIFFTAG_MAXSAMPLEVALUE:
|
||||||
# 244: case TIFFTAG_SMINSAMPLEVALUE:
|
# 244: case TIFFTAG_SMINSAMPLEVALUE:
|
||||||
# 247: case TIFFTAG_SMAXSAMPLEVALUE:
|
# 247: case TIFFTAG_SMAXSAMPLEVALUE:
|
||||||
# 250: case TIFFTAG_XRESOLUTION:
|
# 250: case TIFFTAG_XRESOLUTION:
|
||||||
# 256: case TIFFTAG_YRESOLUTION:
|
# 256: case TIFFTAG_YRESOLUTION:
|
||||||
# 262: case TIFFTAG_PLANARCONFIG:
|
# 262: case TIFFTAG_PLANARCONFIG:
|
||||||
# 268: case TIFFTAG_XPOSITION:
|
# 268: case TIFFTAG_XPOSITION:
|
||||||
# 271: case TIFFTAG_YPOSITION:
|
# 271: case TIFFTAG_YPOSITION:
|
||||||
# 274: case TIFFTAG_RESOLUTIONUNIT:
|
# 274: case TIFFTAG_RESOLUTIONUNIT:
|
||||||
# 280: case TIFFTAG_PAGENUMBER:
|
# 280: case TIFFTAG_PAGENUMBER:
|
||||||
# 284: case TIFFTAG_HALFTONEHINTS:
|
# 284: case TIFFTAG_HALFTONEHINTS:
|
||||||
# 288: case TIFFTAG_COLORMAP:
|
# 288: case TIFFTAG_COLORMAP:
|
||||||
# 294: case TIFFTAG_EXTRASAMPLES:
|
# 294: case TIFFTAG_EXTRASAMPLES:
|
||||||
# 298: case TIFFTAG_MATTEING:
|
# 298: case TIFFTAG_MATTEING:
|
||||||
# 305: case TIFFTAG_TILEWIDTH:
|
# 305: case TIFFTAG_TILEWIDTH:
|
||||||
# 316: case TIFFTAG_TILELENGTH:
|
# 316: case TIFFTAG_TILELENGTH:
|
||||||
# 327: case TIFFTAG_TILEDEPTH:
|
# 327: case TIFFTAG_TILEDEPTH:
|
||||||
# 333: case TIFFTAG_DATATYPE:
|
# 333: case TIFFTAG_DATATYPE:
|
||||||
# 344: case TIFFTAG_SAMPLEFORMAT:
|
# 344: case TIFFTAG_SAMPLEFORMAT:
|
||||||
# 361: case TIFFTAG_IMAGEDEPTH:
|
# 361: case TIFFTAG_IMAGEDEPTH:
|
||||||
# 364: case TIFFTAG_SUBIFD:
|
# 364: case TIFFTAG_SUBIFD:
|
||||||
# 376: case TIFFTAG_YCBCRPOSITIONING:
|
# 376: case TIFFTAG_YCBCRPOSITIONING:
|
||||||
# 379: case TIFFTAG_YCBCRSUBSAMPLING:
|
# 379: case TIFFTAG_YCBCRSUBSAMPLING:
|
||||||
# 383: case TIFFTAG_TRANSFERFUNCTION:
|
# 383: case TIFFTAG_TRANSFERFUNCTION:
|
||||||
# 389: case TIFFTAG_REFERENCEBLACKWHITE:
|
# 389: case TIFFTAG_REFERENCEBLACKWHITE:
|
||||||
# 393: case TIFFTAG_INKNAMES:
|
# 393: case TIFFTAG_INKNAMES:
|
||||||
|
|
||||||
# some of these are not in our TAGS_V2 dict and were included from tiff.h
|
# some of these are not in our TAGS_V2 dict and were included from tiff.h
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user