1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203
|
# The PyMca X-Ray Fluorescence Toolkit
#
# Copyright (c) 2004-2020 European Synchrotron Radiation Facility
#
# This file is part of the PyMca X-ray Fluorescence Toolkit developed at
# the ESRF by the Software group.
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
__author__ = "V.A. Sole - ESRF Data Analysis"
__contact__ = "sole@esrf.fr"
__license__ = "MIT"
__copyright__ = "European Synchrotron Radiation Facility, Grenoble, France"
__date__ = "26/12/2020"
import sys
import os
import struct
import numpy
import logging
ALLOW_MULTIPLE_STRIPS = False
TAG_ID = {256: "NumberOfColumns", # S or L ImageWidth
257: "NumberOfRows", # S or L ImageHeight
258: "BitsPerSample", # S Number of bits per component
259: "Compression", # SHORT (1 - NoCompression, ...
262: "PhotometricInterpretation", # SHORT (0 - WhiteIsZero, 1 -BlackIsZero, 2 - RGB, 3 - Palette color
270: "ImageDescription", # ASCII
272: "Model", # ASCII
273: "StripOffsets", # S or L, for each strip, the byte offset of the strip
277: "SamplesPerPixel", # SHORT (>=3) only for RGB images
278: "RowsPerStrip", # S or L, number of rows in each back may be not for the last
279: "StripByteCounts", # S or L, The number of bytes in the strip AFTER any compression
305: "Software", # ASCII
306: "Date", # ASCII
320: "Colormap", # Colormap of Palette-color Images
339: "SampleFormat", # SHORT Interpretation of data in each pixel
}
# TILES ARE TO BE SUPPORTED TOO ...
TAG_NUMBER_OF_COLUMNS = 256
TAG_NUMBER_OF_ROWS = 257
TAG_BITS_PER_SAMPLE = 258
TAG_PHOTOMETRIC_INTERPRETATION = 262
TAG_COMPRESSION = 259
TAG_IMAGE_DESCRIPTION = 270
TAG_MODEL = 272
TAG_STRIP_OFFSETS = 273
TAG_SAMPLES_PER_PIXEL = 277
TAG_ROWS_PER_STRIP = 278
TAG_STRIP_BYTE_COUNTS = 279
TAG_SOFTWARE = 305
TAG_DATE = 306
TAG_COLORMAP = 320
TAG_SAMPLE_FORMAT = 339
FIELD_TYPE = {1: ('BYTE', "B"),
2: ('ASCII', "s"), # string ending with binary zero
3: ('SHORT', "H"),
4: ('LONG', "I"),
5: ('RATIONAL', "II"),
6: ('SBYTE', "b"),
7: ('UNDEFINED', "B"),
8: ('SSHORT', "h"),
9: ('SLONG', "i"),
10: ('SRATIONAL', "ii"),
11: ('FLOAT', "f"),
12: ('DOUBLE', "d")}
FIELD_TYPE_OUT = {'B': 1,
's': 2,
'H': 3,
'I': 4,
'II': 5,
'b': 6,
'h': 8,
'i': 9,
'ii': 10,
'f': 11,
'd': 12}
# sample formats (http://www.awaresystems.be/imaging/tiff/tiffflags/sampleformat.html)
SAMPLE_FORMAT_UINT = 1
SAMPLE_FORMAT_INT = 2
SAMPLE_FORMAT_FLOAT = 3 # floating point
SAMPLE_FORMAT_VOID = 4 # undefined data, usually assumed UINT
SAMPLE_FORMAT_COMPLEXINT = 5
SAMPLE_FORMAT_COMPLEXIEEEFP = 6
logger = logging.getLogger(__name__)
class TiffIO(object):
def __init__(self, filename, mode=None, cache_length=20, mono_output=False):
if mode is None:
mode = 'rb'
if 'b' not in mode:
mode = mode + 'b'
if 'a' in mode.lower():
raise IOError("Mode %s makes no sense on TIFF files. Consider 'rb+'" % mode)
if ('w' in mode):
if '+' not in mode:
mode += '+'
if hasattr(filename, "seek") and\
hasattr(filename, "read"):
fd = filename
self._access = None
else:
# the b is needed for windows and python 3
fd = open(filename, mode)
self._access = mode
self._initInternalVariables(fd)
self._maxImageCacheLength = cache_length
self._forceMonoOutput = mono_output
def __enter__(self):
return self
def __exit__(self, *arg):
# TODO: inspace type, value and traceback
self.close()
def _initInternalVariables(self, fd=None):
if fd is None:
fd = self.fd
else:
self.fd = fd
# read the order
fd.seek(0)
order = fd.read(2).decode()
if len(order):
if order == "II":
# intel, little endian
fileOrder = "little"
self._structChar = '<'
elif order == "MM":
# motorola, high endian
fileOrder = "big"
self._structChar = '>'
else:
raise IOError("File is not a Mar CCD file, nor a TIFF file")
a = fd.read(2)
fortyTwo = struct.unpack(self._structChar + "H", a)[0]
if fortyTwo != 42:
raise IOError("Invalid TIFF version %d" % fortyTwo)
else:
logger.debug("VALID TIFF VERSION")
if sys.byteorder != fileOrder:
swap = True
else:
swap = False
else:
if sys.byteorder == "little":
self._structChar = '<'
else:
self._structChar = '>'
swap = False
self._swap = swap
self._IFD = []
self._imageDataCacheIndex = []
self._imageDataCache = []
self._imageInfoCacheIndex = []
self._imageInfoCache = []
self.getImageFileDirectories(fd)
def __makeSureFileIsOpen(self):
if not self.fd.closed:
return
logger.debug("Reopening closed file")
fileName = self.fd.name
if self._access is None:
# we do not own the file
# open in read mode
newFile = open(fileName, 'rb')
else:
newFile = open(fileName, self._access)
self.fd = newFile
def __makeSureFileIsClosed(self):
if self._access is None:
# we do not own the file
logger.debug("Not closing not owned file")
return
if not self.fd.closed:
self.fd.close()
def close(self):
return self.__makeSureFileIsClosed()
def getNumberOfImages(self):
# update for the case someone has done anything?
self._updateIFD()
return len(self._IFD)
def _updateIFD(self):
self.__makeSureFileIsOpen()
self.getImageFileDirectories()
self.__makeSureFileIsClosed()
def getImageFileDirectories(self, fd=None):
if fd is None:
fd = self.fd
else:
self.fd = fd
st = self._structChar
fd.seek(4)
self._IFD = []
nImages = 0
fmt = st + 'I'
inStr = fd.read(struct.calcsize(fmt))
if not len(inStr):
offsetToIFD = 0
else:
offsetToIFD = struct.unpack(fmt, inStr)[0]
logger.debug("Offset to first IFD = %d", offsetToIFD)
while offsetToIFD != 0:
self._IFD.append(offsetToIFD)
nImages += 1
fd.seek(offsetToIFD)
fmt = st + 'H'
numberOfDirectoryEntries = struct.unpack(fmt, fd.read(struct.calcsize(fmt)))[0]
logger.debug("Number of directory entries = %d", numberOfDirectoryEntries)
fmt = st + 'I'
fd.seek(offsetToIFD + 2 + 12 * numberOfDirectoryEntries)
offsetToIFD = struct.unpack(fmt, fd.read(struct.calcsize(fmt)))[0]
logger.debug("Next Offset to IFD = %d", offsetToIFD)
# offsetToIFD = 0
logger.debug("Number of images found = %d", nImages)
return nImages
def _parseImageFileDirectory(self, nImage):
offsetToIFD = self._IFD[nImage]
st = self._structChar
fd = self.fd
fd.seek(offsetToIFD)
fmt = st + 'H'
numberOfDirectoryEntries = struct.unpack(fmt, fd.read(struct.calcsize(fmt)))[0]
logger.debug("Number of directory entries = %d", numberOfDirectoryEntries)
fmt = st + 'HHI4s'
tagIDList = []
fieldTypeList = []
nValuesList = []
valueOffsetList = []
for _ in range(numberOfDirectoryEntries):
tagID, fieldType, nValues, valueOffset = struct.unpack(fmt, fd.read(12))
tagIDList.append(tagID)
fieldTypeList.append(fieldType)
nValuesList.append(nValues)
if nValues == 1:
ftype, vfmt = FIELD_TYPE[fieldType]
if ftype not in ['ASCII', 'RATIONAL', 'SRATIONAL']:
vfmt = st + vfmt
data = valueOffset[0: struct.calcsize(vfmt)]
if struct.calcsize(vfmt) > len(data):
# Add a 0 padding to have the expected size
logger.warning("Data at tag id '%s' is smaller than expected", tagID)
data = data + b"\x00" * (struct.calcsize(vfmt) - len(data))
actualValue = struct.unpack(vfmt, data)[0]
valueOffsetList.append(actualValue)
else:
valueOffsetList.append(valueOffset)
elif (nValues < 5) and (fieldType == 2):
ftype, vfmt = FIELD_TYPE[fieldType]
vfmt = st + "%d%s" % (nValues, vfmt)
actualValue = struct.unpack(vfmt, valueOffset[0: struct.calcsize(vfmt)])[0]
valueOffsetList.append(actualValue)
else:
valueOffsetList.append(valueOffset)
if logger.getEffectiveLevel() == logging.DEBUG:
if tagID in TAG_ID:
logger.debug("tagID = %s", TAG_ID[tagID])
else:
logger.debug("tagID = %d", tagID)
logger.debug("fieldType = %s", FIELD_TYPE[fieldType][0])
logger.debug("nValues = %d", nValues)
# if nValues == 1:
# logger.debug("valueOffset = %s", valueOffset)
return tagIDList, fieldTypeList, nValuesList, valueOffsetList
def _readIFDEntry(self, tag, tagIDList, fieldTypeList, nValuesList, valueOffsetList):
fd = self.fd
st = self._structChar
idx = tagIDList.index(tag)
nValues = nValuesList[idx]
output = []
_ftype, vfmt = FIELD_TYPE[fieldTypeList[idx]]
vfmt = st + "%d%s" % (nValues, vfmt)
requestedBytes = struct.calcsize(vfmt)
if nValues == 1:
output.append(valueOffsetList[idx])
elif requestedBytes < 5:
output.append(valueOffsetList[idx])
else:
fd.seek(struct.unpack(st + "I", valueOffsetList[idx])[0])
output = struct.unpack(vfmt, fd.read(requestedBytes))
if fieldTypeList[idx] == 2:
# That's an ASCII tag
cleaned_output = []
for raw in output:
# remove the trailing \x00
index = raw.find(b"\x00")
if index != -1:
raw = raw[0:index]
# read the data as text
try:
text = raw.decode("utf-8")
except UnicodeDecodeError:
logger.warning("TIFF file tag %d contains non ASCII/UTF-8 characters. ", tag)
text = raw.decode("utf-8", errors='replace')
# Use a valid ASCII character to limit ferther encoding error
text = text.replace(u"\ufffd", "?")
cleaned_output.append(text)
if isinstance(output, tuple):
output = tuple(cleaned_output)
else:
output = cleaned_output
return output
def getData(self, nImage, **kw):
if nImage >= len(self._IFD):
# update prior to raise an index error error
self._updateIFD()
return self._readImage(nImage, **kw)
def getImage(self, nImage):
return self.getData(nImage)
def getInfo(self, nImage, **kw):
if nImage >= len(self._IFD):
# update prior to raise an index error error
self._updateIFD()
# current = self._IFD[nImage]
return self._readInfo(nImage)
def _readInfo(self, nImage, close=True):
if nImage in self._imageInfoCacheIndex:
logger.debug("Reading info from cache")
return self._imageInfoCache[self._imageInfoCacheIndex.index(nImage)]
# read the header
self.__makeSureFileIsOpen()
tagIDList, fieldTypeList, nValuesList, valueOffsetList = self._parseImageFileDirectory(nImage)
# rows and columns
nColumns = valueOffsetList[tagIDList.index(TAG_NUMBER_OF_COLUMNS)]
nRows = valueOffsetList[tagIDList.index(TAG_NUMBER_OF_ROWS)]
# bits per sample
idx = tagIDList.index(TAG_BITS_PER_SAMPLE)
nBits = valueOffsetList[idx]
if nValuesList[idx] != 1:
# this happens with RGB and friends, nBits is not a single value
nBits = self._readIFDEntry(TAG_BITS_PER_SAMPLE,
tagIDList, fieldTypeList, nValuesList,
valueOffsetList)
if TAG_COLORMAP in tagIDList:
idx = tagIDList.index(TAG_COLORMAP)
tmpColormap = self._readIFDEntry(TAG_COLORMAP,
tagIDList, fieldTypeList, nValuesList, valueOffsetList)
if max(tmpColormap) > 255:
tmpColormap = numpy.array(tmpColormap, dtype=numpy.uint16)
tmpColormap = (tmpColormap / 256.).astype(numpy.uint8)
else:
tmpColormap = numpy.array(tmpColormap, dtype=numpy.uint8)
tmpColormap.shape = 3, -1
colormap = numpy.zeros((tmpColormap.shape[-1], 3), tmpColormap.dtype)
colormap[:,:] = tmpColormap.T
tmpColormap = None
else:
colormap = None
# sample format
if TAG_SAMPLE_FORMAT in tagIDList:
sampleFormat = valueOffsetList[tagIDList.index(TAG_SAMPLE_FORMAT)]
else:
# set to unknown
sampleFormat = SAMPLE_FORMAT_VOID
# compression
compression = False
compression_type = 1
if TAG_COMPRESSION in tagIDList:
compression_type = valueOffsetList[tagIDList.index(TAG_COMPRESSION)]
if compression_type == 1:
compression = False
else:
compression = True
# photometric interpretation
interpretation = 1
if TAG_PHOTOMETRIC_INTERPRETATION in tagIDList:
interpretation = valueOffsetList[tagIDList.index(TAG_PHOTOMETRIC_INTERPRETATION)]
else:
logger.debug("WARNING: Non standard TIFF. Photometric interpretation TAG missing")
helpString = ""
if TAG_IMAGE_DESCRIPTION in tagIDList:
imageDescription = self._readIFDEntry(TAG_IMAGE_DESCRIPTION,
tagIDList, fieldTypeList, nValuesList, valueOffsetList)
if type(imageDescription) in [type([1]), type((1,))]:
imageDescription = helpString.join(imageDescription)
else:
imageDescription = "%d/%d" % (nImage + 1, len(self._IFD))
if TAG_MODEL in tagIDList:
model = self._readIFDEntry(TAG_MODEL,
tagIDList, fieldTypeList, nValuesList, valueOffsetList)
else:
model = None
defaultSoftware = "Unknown Software"
if TAG_SOFTWARE in tagIDList:
software = self._readIFDEntry(TAG_SOFTWARE,
tagIDList, fieldTypeList, nValuesList, valueOffsetList)
if isinstance(software, (tuple, list)):
software = helpString.join(software)
else:
software = defaultSoftware
if software == defaultSoftware:
try:
if imageDescription.upper().startswith("IMAGEJ"):
software = imageDescription.split("=")[0]
except Exception:
pass
if TAG_DATE in tagIDList:
date = self._readIFDEntry(TAG_DATE,
tagIDList, fieldTypeList, nValuesList, valueOffsetList)
if type(date) in [type([1]), type((1,))]:
date = helpString.join(date)
else:
date = "Unknown Date"
stripOffsets = self._readIFDEntry(TAG_STRIP_OFFSETS,
tagIDList,
fieldTypeList,
nValuesList,
valueOffsetList)
if TAG_ROWS_PER_STRIP in tagIDList:
rowsPerStrip = self._readIFDEntry(TAG_ROWS_PER_STRIP,
tagIDList,
fieldTypeList,
nValuesList,
valueOffsetList)[0]
else:
rowsPerStrip = nRows
logger.warning("Non standard TIFF. Rows per strip TAG missing")
if TAG_STRIP_BYTE_COUNTS in tagIDList:
stripByteCounts = self._readIFDEntry(TAG_STRIP_BYTE_COUNTS,
tagIDList,
fieldTypeList,
nValuesList,
valueOffsetList)
else:
logger.warning("Non standard TIFF. Strip byte counts TAG missing")
if hasattr(nBits, 'index'):
expectedSum = 0
for n in nBits:
expectedSum += int(nRows * nColumns * n / 8)
else:
expectedSum = int(nRows * nColumns * nBits / 8)
stripByteCounts = [expectedSum]
if close:
self.__makeSureFileIsClosed()
if self._forceMonoOutput and (interpretation > 1):
# color image but asked monochrome output
nBits = 32
colormap = None
sampleFormat = SAMPLE_FORMAT_FLOAT
interpretation = 1
# we cannot rely on any cache in this case
useInfoCache = False
logger.debug("FORCED MONO")
else:
useInfoCache = True
info = {}
info["nRows"] = nRows
info["nColumns"] = nColumns
info["nBits"] = nBits
info["compression"] = compression
info["compression_type"] = compression_type
info["imageDescription"] = imageDescription
info["stripOffsets"] = stripOffsets # This contains the file offsets to the data positions
info["rowsPerStrip"] = rowsPerStrip
info["stripByteCounts"] = stripByteCounts # bytes in strip since I do not support compression
info["software"] = software
info["date"] = date
info["colormap"] = colormap
info["sampleFormat"] = sampleFormat
info["photometricInterpretation"] = interpretation
if model is not None:
info["model"] = model
infoDict = {}
testString = 'PyMca'
if software.startswith(testString):
# str to make sure python 2.x sees it as string and not unicode
descriptionString = imageDescription
# interpret the image description in terms of supplied
# information at writing time
items = descriptionString.split('=')
for i in range(int(len(items) / 2)):
key = "%s" % items[i * 2]
# get rid of the \n at the end of the value
value = "%s" % items[i * 2 + 1][:-1]
infoDict[key] = value
info['info'] = infoDict
if (self._maxImageCacheLength > 0) and useInfoCache:
self._imageInfoCacheIndex.insert(0, nImage)
self._imageInfoCache.insert(0, info)
if len(self._imageInfoCacheIndex) > self._maxImageCacheLength:
self._imageInfoCacheIndex = self._imageInfoCacheIndex[:self._maxImageCacheLength]
self._imageInfoCache = self._imageInfoCache[:self._maxImageCacheLength]
return info
def _readImage(self, nImage, **kw):
logger.debug("Reading image %d", nImage)
if 'close' in kw:
close = kw['close']
else:
close = True
rowMin = kw.get('rowMin', None)
rowMax = kw.get('rowMax', None)
if nImage in self._imageDataCacheIndex:
logger.debug("Reading image data from cache")
return self._imageDataCache[self._imageDataCacheIndex.index(nImage)]
self.__makeSureFileIsOpen()
if self._forceMonoOutput:
oldMono = True
else:
oldMono = False
try:
self._forceMonoOutput = False
info = self._readInfo(nImage, close=False)
self._forceMonoOutput = oldMono
except Exception:
logger.debug("Backtrace", exc_info=True)
self._forceMonoOutput = oldMono
raise
compression = info['compression']
compression_type = info['compression_type']
if compression:
if compression_type != 32773:
raise IOError("Compressed TIFF images not supported except packbits")
else:
# PackBits compression
logger.debug("Using PackBits compression")
interpretation = info["photometricInterpretation"]
if interpretation == 2:
# RGB
pass
# raise IOError("RGB Image. Only grayscale images supported")
elif interpretation == 3:
# Palette Color Image
pass
# raise IOError("Palette-color Image. Only grayscale images supported")
elif interpretation > 2:
# Palette Color Image
raise IOError("Only grayscale images supported")
nRows = info["nRows"]
nColumns = info["nColumns"]
nBits = info["nBits"]
colormap = info["colormap"]
sampleFormat = info["sampleFormat"]
if rowMin is None:
rowMin = 0
if rowMax is None:
rowMax = nRows - 1
if rowMin < 0:
rowMin = nRows - rowMin
if rowMax < 0:
rowMax = nRows - rowMax
if rowMax < rowMin:
txt = "Max Row smaller than Min Row. Reverse selection not supported"
raise NotImplementedError(txt)
if rowMin >= nRows:
raise IndexError("Image only has %d rows" % nRows)
if rowMax >= nRows:
raise IndexError("Image only has %d rows" % nRows)
if sampleFormat == SAMPLE_FORMAT_FLOAT:
if nBits == 32:
dtype = numpy.float32
elif nBits == 64:
dtype = numpy.float64
else:
raise ValueError("Unsupported number of bits for a float: %d" % nBits)
elif sampleFormat in [SAMPLE_FORMAT_UINT, SAMPLE_FORMAT_VOID]:
if nBits in [8, (8, 8, 8), [8, 8, 8]]:
dtype = numpy.uint8
elif nBits in [16, (16, 16, 16), [16, 16, 16]]:
dtype = numpy.uint16
elif nBits in [32, (32, 32, 32), [32, 32, 32]]:
dtype = numpy.uint32
elif nBits in [64, (64, 64, 64), [64, 64, 64]]:
dtype = numpy.uint64
else:
raise ValueError("Unsupported number of bits for unsigned int: %s" % (nBits,))
elif sampleFormat == SAMPLE_FORMAT_INT:
if nBits in [8, (8, 8, 8), [8, 8, 8]]:
dtype = numpy.int8
elif nBits in [16, (16, 16, 16), [16, 16, 16]]:
dtype = numpy.int16
elif nBits in [32, (32, 32, 32), [32, 32, 32]]:
dtype = numpy.int32
elif nBits in [64, (64, 64, 64), [64, 64, 64]]:
dtype = numpy.int64
else:
raise ValueError("Unsupported number of bits for signed int: %s" % (nBits,))
else:
raise ValueError("Unsupported combination. Bits = %s Format = %d" % (nBits, sampleFormat))
if hasattr(nBits, 'index'):
image = numpy.zeros((nRows, nColumns, len(nBits)), dtype=dtype)
elif colormap is not None and interpretation == 3:
# should I use colormap dtype?
image = numpy.zeros((nRows, nColumns, 3), dtype=dtype)
else:
image = numpy.zeros((nRows, nColumns), dtype=dtype)
fd = self.fd
stripOffsets = info["stripOffsets"] # This contains the file offsets to the data positions
rowsPerStrip = info["rowsPerStrip"]
stripByteCounts = info["stripByteCounts"] # bytes in strip since I do not support compression
rowStart = 0
if len(stripOffsets) == 1:
bytesPerRow = int(stripByteCounts[0] / rowsPerStrip)
nBytes = stripByteCounts[0]
if nRows == rowsPerStrip:
actualBytesPerRow = int(image.nbytes / nRows)
if actualBytesPerRow != bytesPerRow:
logger.warning("Bogus StripByteCounts information")
bytesPerRow = actualBytesPerRow
nBytes = (rowMax - rowMin + 1) * bytesPerRow
fd.seek(stripOffsets[0] + rowMin * bytesPerRow)
readout = numpy.frombuffer(fd.read(nBytes), dtype).copy()
if self._swap:
readout.byteswap(True)
if hasattr(nBits, 'index'):
readout.shape = -1, nColumns, len(nBits)
elif info['colormap'] is not None and interpretation == 3:
readout = colormap[readout]
readout.shape = -1, nColumns, 3
else:
readout.shape = -1, nColumns
image[...] = readout
else:
for i in range(len(stripOffsets)):
# the amount of rows
nRowsToRead = rowsPerStrip
rowEnd = int(min(rowStart + nRowsToRead, nRows))
if rowEnd < rowMin:
rowStart += nRowsToRead
continue
if (rowStart > rowMax):
break
# we are in position
fd.seek(stripOffsets[i])
# the amount of bytes to read
nBytes = stripByteCounts[i]
if compression_type == 32773:
try:
bufferBytes = bytes()
except Exception:
# python 2.5 ...
bufferBytes = ""
# packBits
readBytes = 0
# intermediate buffer
tmpBuffer = fd.read(nBytes)
while readBytes < nBytes:
n = struct.unpack('b', tmpBuffer[readBytes:(readBytes + 1)])[0]
readBytes += 1
if n >= 0:
# should I prevent reading more than the
# length of the chain? Let's python raise
# the exception...
bufferBytes += tmpBuffer[readBytes:
readBytes + (n + 1)]
readBytes += (n + 1)
elif n > -128:
bufferBytes += (-n + 1) * tmpBuffer[readBytes:(readBytes + 1)]
readBytes += 1
else:
# if read -128 ignore the byte
continue
readout = numpy.frombuffer(bufferBytes, dtype).copy()
if self._swap:
readout.byteswap(True)
if hasattr(nBits, 'index'):
readout.shape = -1, nColumns, len(nBits)
elif info['colormap'] is not None:
readout = colormap[readout]
readout.shape = -1, nColumns, 3
else:
readout.shape = -1, nColumns
image[rowStart:rowEnd,:] = readout
else:
readout = numpy.frombuffer(fd.read(nBytes), dtype).copy()
if self._swap:
readout.byteswap(True)
if hasattr(nBits, 'index'):
readout.shape = -1, nColumns, len(nBits)
elif colormap is not None:
readout = colormap[readout]
readout.shape = -1, nColumns, 3
else:
readout.shape = -1, nColumns
image[rowStart:rowEnd,:] = readout
rowStart += nRowsToRead
if close:
self.__makeSureFileIsClosed()
if len(image.shape) == 3:
# color image
if self._forceMonoOutput:
# color image, convert to monochrome
image = (image[:,:, 0] * 0.114 +
image[:,:, 1] * 0.587 +
image[:,:, 2] * 0.299).astype(numpy.float32)
if (rowMin == 0) and (rowMax == (nRows - 1)):
self._imageDataCacheIndex.insert(0, nImage)
self._imageDataCache.insert(0, image)
if len(self._imageDataCacheIndex) > self._maxImageCacheLength:
self._imageDataCacheIndex = self._imageDataCacheIndex[:self._maxImageCacheLength]
self._imageDataCache = self._imageDataCache[:self._maxImageCacheLength]
return image
def writeImage(self, image0, info=None, software=None, date=None):
if software is None:
software = 'PyMca.TiffIO'
# if date is None:
# date = time.ctime()
self.__makeSureFileIsOpen()
fd = self.fd
# prior to do anything, perform some tests
if not len(image0.shape):
raise ValueError("Empty image")
if len(image0.shape) == 1:
# get a different view
image = image0[:]
image.shape = 1, -1
else:
image = image0
if image.dtype == numpy.float64:
image = image.astype(numpy.float32)
fd.seek(0)
mode = fd.mode
name = fd.name
if 'w' in mode:
# we have to overwrite the file
self.__makeSureFileIsClosed()
fd = None
if os.path.exists(name):
os.remove(name)
fd = open(name, mode='wb+')
self._initEmptyFile(fd)
self.fd = fd
# read the file size
self.__makeSureFileIsOpen()
fd = self.fd
fd.seek(0, os.SEEK_END)
endOfFile = fd.tell()
if fd.tell() == 0:
self._initEmptyFile(fd)
fd.seek(0, os.SEEK_END)
endOfFile = fd.tell()
# init internal variables
self._initInternalVariables(fd)
st = self._structChar
# get the image file directories
nImages = self.getImageFileDirectories()
logger.debug("File contains %d images", nImages)
if nImages == 0:
fd.seek(4)
fmt = st + 'I'
fd.write(struct.pack(fmt, endOfFile))
else:
fd.seek(self._IFD[-1])
fmt = st + 'H'
numberOfDirectoryEntries = struct.unpack(fmt, fd.read(struct.calcsize(fmt)))[0]
fmt = st + 'I'
pos = self._IFD[-1] + 2 + 12 * numberOfDirectoryEntries
fd.seek(pos)
fmt = st + 'I'
fd.write(struct.pack(fmt, endOfFile))
fd.flush()
# and we can write at the end of the file, find out the file length
fd.seek(0, os.SEEK_END)
# get the description information from the input information
if info is None:
description = info
else:
description = "%s" % ""
for key in info.keys():
description += "%s=%s\n" % (key, info[key])
# get the image file directory
outputIFD = self._getOutputIFD(image, description=description,
software=software,
date=date)
# write the new IFD
fd.write(outputIFD)
# write the image
if self._swap:
fd.write(image.byteswap().tobytes())
else:
fd.write(image.tobytes())
fd.flush()
self.fd = fd
self.__makeSureFileIsClosed()
def _initEmptyFile(self, fd=None):
if fd is None:
fd = self.fd
if sys.byteorder == "little":
order = "II"
# intel, little endian
fileOrder = "little"
self._structChar = '<'
else:
order = "MM"
# motorola, high endian
fileOrder = "big"
self._structChar = '>'
st = self._structChar
if fileOrder == sys.byteorder:
self._swap = False
else:
self._swap = True
fd.seek(0)
fd.write(struct.pack(st + '2s', bytes(order, 'utf-8')))
fd.write(struct.pack(st + 'H', 42))
fd.write(struct.pack(st + 'I', 0))
fd.flush()
def _getOutputIFD(self, image, description=None, software=None, date=None):
# the tags have to be in order
# the very minimum is
# 256:"NumberOfColumns", # S or L ImageWidth
# 257:"NumberOfRows", # S or L ImageHeight
# 258:"BitsPerSample", # S Number of bits per component
# 259:"Compression", # SHORT (1 - NoCompression, ...
# 262:"PhotometricInterpretation", # SHORT (0 - WhiteIsZero, 1 -BlackIsZero, 2 - RGB, 3 - Palette color
# 270:"ImageDescription", # ASCII
# 273:"StripOffsets", # S or L, for each strip, the byte offset of the strip
# 277:"SamplesPerPixel", # SHORT (>=3) only for RGB images
# 278:"RowsPerStrip", # S or L, number of rows in each back may be not for the last
# 279:"StripByteCounts", # S or L, The number of bytes in the strip AFTER any compression
# 305:"Software", # ASCII
# 306:"Date", # ASCII
# 339:"SampleFormat", # SHORT Interpretation of data in each pixel
nDirectoryEntries = 9
imageDescription = None
if description is not None:
descriptionLength = len(description)
while descriptionLength < 4:
description = description + " "
descriptionLength = len(description)
if isinstance(description, str):
raw = description.encode('utf-8')
else:
raw = bytes(description, 'utf-8')
imageDescription = struct.pack("%ds" % len(raw), raw)
nDirectoryEntries += 1
# software
if software is not None:
softwareLength = len(software)
while softwareLength < 4:
software = software + " "
softwareLength = len(software)
software = bytes(software, 'utf-8')
softwarePackedString = struct.pack("%ds" % softwareLength, software)
nDirectoryEntries += 1
else:
softwareLength = 0
if date is not None:
dateLength = len(date)
date = bytes(date, 'utf-8')
datePackedString = struct.pack("%ds" % dateLength, date)
dateLength = len(datePackedString)
nDirectoryEntries += 1
else:
dateLength = 0
if len(image.shape) == 2:
nRows, nColumns = image.shape
nChannels = 1
elif len(image.shape) == 3:
nRows, nColumns, nChannels = image.shape
else:
raise RuntimeError("Image does not have the right shape")
dtype = image.dtype
bitsPerSample = int(dtype.str[-1]) * 8
# only uncompressed data
compression = 1
# interpretation, black is zero
if nChannels == 1:
interpretation = 1
bitsPerSampleLength = 0
elif nChannels == 3:
interpretation = 2
bitsPerSampleLength = 3 * 2 # To store 3 shorts
nDirectoryEntries += 1 # For SamplesPerPixel
else:
raise RuntimeError(
"Image with %d color channel(s) not supported" % nChannels)
# image description
if imageDescription is not None:
descriptionLength = len(imageDescription)
else:
descriptionLength = 0
# strip offsets
# we are putting them after the directory and the directory is
# at the end of the file
self.fd.seek(0, os.SEEK_END)
endOfFile = self.fd.tell()
if endOfFile == 0:
# empty file
endOfFile = 8
# rows per strip
if ALLOW_MULTIPLE_STRIPS:
# try to segment the image in several pieces
if not (nRows % 4):
rowsPerStrip = int(nRows / 4)
elif not (nRows % 10):
rowsPerStrip = int(nRows / 10)
elif not (nRows % 8):
rowsPerStrip = int(nRows / 8)
elif not (nRows % 4):
rowsPerStrip = int(nRows / 4)
elif not (nRows % 2):
rowsPerStrip = int(nRows / 2)
else:
rowsPerStrip = nRows
else:
rowsPerStrip = nRows
# stripByteCounts
stripByteCounts = int(nColumns * rowsPerStrip *
bitsPerSample * nChannels / 8)
if descriptionLength > 4:
stripOffsets0 = (endOfFile + dateLength + descriptionLength +
2 + 12 * nDirectoryEntries + 4)
else:
stripOffsets0 = (endOfFile + dateLength +
2 + 12 * nDirectoryEntries + 4)
if softwareLength > 4:
stripOffsets0 += softwareLength
stripOffsets0 += bitsPerSampleLength
stripOffsets = [stripOffsets0]
stripOffsetsLength = 0
stripOffsetsString = None
st = self._structChar
if rowsPerStrip != nRows:
nStripOffsets = int(nRows / rowsPerStrip)
fmt = st + 'I'
stripOffsetsLength = struct.calcsize(fmt) * nStripOffsets
stripOffsets0 += stripOffsetsLength
# the length for the stripByteCounts will be the same
stripOffsets0 += stripOffsetsLength
stripOffsets = []
for i in range(nStripOffsets):
value = stripOffsets0 + i * stripByteCounts
stripOffsets.append(value)
if i == 0:
stripOffsetsString = struct.pack(fmt, value)
stripByteCountsString = struct.pack(fmt, stripByteCounts)
else:
stripOffsetsString += struct.pack(fmt, value)
stripByteCountsString += struct.pack(fmt, stripByteCounts)
logger.debug("IMAGE WILL START AT %d", stripOffsets[0])
# sample format
if dtype in [numpy.float32, numpy.float64] or\
dtype.str[-2] == 'f':
sampleFormat = SAMPLE_FORMAT_FLOAT
elif dtype in [numpy.uint8, numpy.uint16, numpy.uint32, numpy.uint64]:
sampleFormat = SAMPLE_FORMAT_UINT
elif dtype in [numpy.int8, numpy.int16, numpy.int32, numpy.int64]:
sampleFormat = SAMPLE_FORMAT_INT
else:
raise ValueError("Unsupported data type %s" % dtype)
info = {}
info["nColumns"] = nColumns
info["nRows"] = nRows
info["nBits"] = bitsPerSample
info["compression"] = compression
info["photometricInterpretation"] = interpretation
info["stripOffsets"] = stripOffsets
if interpretation == 2:
info["samplesPerPixel"] = 3 # No support for extra samples
info["rowsPerStrip"] = rowsPerStrip
info["stripByteCounts"] = stripByteCounts
info["date"] = date
info["sampleFormat"] = sampleFormat
outputIFD = eval('b""')
fmt = st + "H"
outputIFD += struct.pack(fmt, nDirectoryEntries)
fmt = st + "HHII"
outputIFD += struct.pack(fmt, TAG_NUMBER_OF_COLUMNS,
FIELD_TYPE_OUT['I'], 1, info["nColumns"])
outputIFD += struct.pack(fmt, TAG_NUMBER_OF_ROWS,
FIELD_TYPE_OUT['I'], 1, info["nRows"])
if info["photometricInterpretation"] == 1:
fmt = st + 'HHIHH'
outputIFD += struct.pack(fmt, TAG_BITS_PER_SAMPLE,
FIELD_TYPE_OUT['H'], 1, info["nBits"], 0)
elif info["photometricInterpretation"] == 2:
fmt = st + 'HHII'
outputIFD += struct.pack(fmt, TAG_BITS_PER_SAMPLE,
FIELD_TYPE_OUT['H'], 3,
info["stripOffsets"][0] - 2 * stripOffsetsLength - descriptionLength -
dateLength - softwareLength - bitsPerSampleLength)
else:
raise RuntimeError("Unsupported photometric interpretation")
fmt = st + 'HHIHH'
outputIFD += struct.pack(fmt, TAG_COMPRESSION,
FIELD_TYPE_OUT['H'], 1, info["compression"], 0)
fmt = st + 'HHIHH'
outputIFD += struct.pack(fmt, TAG_PHOTOMETRIC_INTERPRETATION,
FIELD_TYPE_OUT['H'], 1, info["photometricInterpretation"], 0)
if imageDescription is not None:
descriptionLength = len(imageDescription)
if descriptionLength > 4:
fmt = st + 'HHII'
outputIFD += struct.pack(fmt, TAG_IMAGE_DESCRIPTION,
FIELD_TYPE_OUT['s'], descriptionLength,
info["stripOffsets"][0] - 2 * stripOffsetsLength -
descriptionLength)
else:
# it has to have length 4
fmt = st + 'HHI%ds' % descriptionLength
outputIFD += struct.pack(fmt, TAG_IMAGE_DESCRIPTION,
FIELD_TYPE_OUT['s'],
descriptionLength,
imageDescription)
if len(stripOffsets) == 1:
fmt = st + 'HHII'
outputIFD += struct.pack(fmt, TAG_STRIP_OFFSETS,
FIELD_TYPE_OUT['I'], 1,
info["stripOffsets"][0])
else:
fmt = st + 'HHII'
outputIFD += struct.pack(fmt, TAG_STRIP_OFFSETS,
FIELD_TYPE_OUT['I'],
len(stripOffsets),
info["stripOffsets"][0] - 2 * stripOffsetsLength)
if info["photometricInterpretation"] == 2:
fmt = st + 'HHIHH'
outputIFD += struct.pack(fmt, TAG_SAMPLES_PER_PIXEL,
FIELD_TYPE_OUT['H'], 1,
info["samplesPerPixel"], 0)
fmt = st + 'HHII'
outputIFD += struct.pack(fmt, TAG_ROWS_PER_STRIP,
FIELD_TYPE_OUT['I'], 1,
info["rowsPerStrip"])
if len(stripOffsets) == 1:
fmt = st + 'HHII'
outputIFD += struct.pack(fmt, TAG_STRIP_BYTE_COUNTS,
FIELD_TYPE_OUT['I'], 1,
info["stripByteCounts"])
else:
fmt = st + 'HHII'
outputIFD += struct.pack(fmt, TAG_STRIP_BYTE_COUNTS,
FIELD_TYPE_OUT['I'], len(stripOffsets),
info["stripOffsets"][0] - stripOffsetsLength)
if software is not None:
if softwareLength > 4:
fmt = st + 'HHII'
outputIFD += struct.pack(fmt, TAG_SOFTWARE,
FIELD_TYPE_OUT['s'],
softwareLength,
info["stripOffsets"][0] -
2 * stripOffsetsLength -
descriptionLength - softwareLength - dateLength)
else:
# it has to have length 4
fmt = st + 'HHI%ds' % softwareLength
outputIFD += struct.pack(fmt, TAG_SOFTWARE,
FIELD_TYPE_OUT['s'],
softwareLength,
softwarePackedString)
if date is not None:
fmt = st + 'HHII'
outputIFD += struct.pack(fmt, TAG_DATE,
FIELD_TYPE_OUT['s'],
dateLength,
info["stripOffsets"][0] -
2 * stripOffsetsLength -
descriptionLength - dateLength)
fmt = st + 'HHIHH'
outputIFD += struct.pack(fmt, TAG_SAMPLE_FORMAT,
FIELD_TYPE_OUT['H'], 1,
info["sampleFormat"], 0)
fmt = st + 'I'
outputIFD += struct.pack(fmt, 0)
if info["photometricInterpretation"] == 2:
outputIFD += struct.pack('HHH', info["nBits"],
info["nBits"], info["nBits"])
if softwareLength > 4:
outputIFD += softwarePackedString
if date is not None:
outputIFD += datePackedString
if imageDescription is not None:
if descriptionLength > 4:
outputIFD += imageDescription
if stripOffsetsString is not None:
outputIFD += stripOffsetsString
outputIFD += stripByteCountsString
return outputIFD
|