mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-01-27 09:44:31 +03:00
added tagnames for ImageJ tiff tags
This commit is contained in:
parent
a40950c3b9
commit
465ebd3af3
|
@ -110,6 +110,10 @@ ICCPROFILE = 34675
|
||||||
EXIFIFD = 34665
|
EXIFIFD = 34665
|
||||||
XMP = 700
|
XMP = 700
|
||||||
|
|
||||||
|
# https://github.com/fiji/ImageJA/blob/master/src/main/java/ij/io/TiffDecoder.java
|
||||||
|
IMAGEJ_META_DATA_BYTE_COUNTS = 50838
|
||||||
|
IMAGEJ_META_DATA = 50839
|
||||||
|
|
||||||
COMPRESSION_INFO = {
|
COMPRESSION_INFO = {
|
||||||
# Compression => pil compression name
|
# Compression => pil compression name
|
||||||
1: "raw",
|
1: "raw",
|
||||||
|
|
|
@ -186,6 +186,10 @@ TAGS = {
|
||||||
50738: "AntiAliasStrength",
|
50738: "AntiAliasStrength",
|
||||||
50740: "DNGPrivateData",
|
50740: "DNGPrivateData",
|
||||||
50741: "MakerNoteSafety",
|
50741: "MakerNoteSafety",
|
||||||
|
|
||||||
|
#ImageJ
|
||||||
|
50838: "ImageJMetaDataByteCounts", # private tag registered with Adobe
|
||||||
|
50839: "ImageJMetaData", # private tag registered with Adobe
|
||||||
}
|
}
|
||||||
|
|
||||||
##
|
##
|
||||||
|
|
Loading…
Reference in New Issue
Block a user