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 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420
|
# -*- coding: utf-8 -*-
"""
Ctypes based wrapper to libtiff library.
See TIFF.__doc__ for usage information.
Homepage: http://pylibtiff.googlecode.com/
License: http://opensource.org/licenses/BSD-3-Clause
Edited by David Hoese to further expand on functionality.
Edited by Lars Ørum Rasmussen to support tiled RGB images.
"""
__author__ = 'Pearu Peterson'
__author__ = 'David Hoese'
#__date__ = 'April 2009'
#__date__ = 'June 2012'
__date__ = 'May 2013'
__license__ = 'BSD'
__all__ = ['libtiff', 'TIFF']
import numpy as np
import os
import sys
import logging
import ctypes
import ctypes.util
log = logging.getLogger(__name__)
def get_library_filename():
if os.name=='nt':
# assume that the directory of libtiff3.dll is in PATH.
lib = ctypes.util.find_library('libtiff3')
if lib is None:
# try default installation path:
lib = r'C:\Program Files\GnuWin32\bin\libtiff3.dll'
if os.path.isfile (lib):
print 'You should add %r to PATH environment variable and reboot.' % (os.path.dirname (lib))
else:
lib = None
else:
if hasattr(sys, 'frozen') and sys.platform == 'darwin' and os.path.exists('../Frameworks/libtiff.dylib'):
# py2app support, see Issue 8.
lib = '../Frameworks/libtiff.dylib'
else:
lib = ctypes.util.find_library('tiff')
if lib is None:
raise ImportError('Failed to find TIFF library. Make sure that libtiff is installed and its location is listed in PATH|LD_LIBRARY_PATH|..')
log.debug("libtiff library found %s" % lib)
return lib
def load_library(lib_fn=None):
if lib_fn is None:
lib_fn = get_library_filename()
libtiff = ctypes.cdll.LoadLibrary(lib_fn)
return libtiff
def get_header_defs(libtiff=None, lib_fn=None):
if lib_fn is None:
lib_fn = get_library_filename()
if libtiff is None:
libtiff = load_library(lib_fn=lib_fn)
libtiff.TIFFGetVersion.restype = ctypes.c_char_p
libtiff.TIFFGetVersion.argtypes = []
libtiff_version_str = libtiff.TIFFGetVersion()
i = libtiff_version_str.lower().split().index('version')
assert i!=-1,`libtiff_version_str`
libtiff_version = libtiff_version_str.split()[i+1]
tiff_h_name = 'tiff_h_%s' % (libtiff_version.replace ('.','_'))
try:
exec 'import %s as tiff_h' % (tiff_h_name)
except ImportError:
tiff_h = None
if tiff_h is None:
include_tiff_h = os.path.join(os.path.split(lib_fn)[0], '..', 'include', 'tiff.h')
if not os.path.isfile(include_tiff_h):
# fix me for windows:
include_tiff_h = os.path.join('/usr','include','tiff.h')
if not os.path.isfile(include_tiff_h):
# Base it off of the python called
include_tiff_h = os.path.realpath(os.path.join(os.path.split(sys.executable)[0], '..', 'include', 'tiff.h'))
if not os.path.isfile(include_tiff_h):
raise ValueError('Failed to find TIFF header file (may be need to run: sudo apt-get install libtiff4-dev)')
# Read TIFFTAG_* constants for the header file:
f = open (include_tiff_h, 'r')
l = []
d = {}
for line in f.readlines():
if not line.startswith('#define'): continue
words = line[7:].lstrip().split()[:2]
if len (words)!=2: continue
name, value = words
i = value.find('/*')
if i!=-1: value = value[:i]
if value in d:
value = d[value]
else:
value = eval(value)
d[name] = value
l.append('%s = %s' % (name, value))
f.close()
fn = os.path.join (os.path.dirname (os.path.abspath (__file__)), tiff_h_name+'.py')
print 'Generating %r' % (fn)
f = open(fn, 'w')
f.write ('\n'.join(l) + '\n')
f.close()
else:
d = tiff_h.__dict__
d['TIFFTAG_CZ_LSMINFO'] = 34412
return d
def get_tag_names(header_def):
all_tags = header_def.copy()
for k in all_tags.keys():
if k.startswith("_"):
del all_tags[k]
return all_tags
def create_tag_maps(header_dict):
define_to_name_map = dict(Orientation={}, Compression={},
PhotoMetric={}, PlanarConfig={},
SampleFormat={}, FillOrder={},
FaxMode={}, TiffTag = {}
)
name_to_define_map = dict(Orientation={}, Compression={},
PhotoMetric={}, PlanarConfig={},
SampleFormat={}, FillOrder={},
FaxMode={}, TiffTag = {}
)
for name, value in d.items():
if name.startswith ('_'): continue
# FIXME: Make the rest of this file not use globals, but access from the 2 maps returned
exec 'global %s; %s = %s' % (name, name, value)
for n in define_to_name_map:
if name.startswith(n.upper()):
define_to_name_map[n][value] = name
name_to_define_map[n][name] = value
return name_to_define_map,define_to_name_map
# Actually load the library
# FIXME: Rename d, non-descriptive name
lib = get_library_filename()
libtiff = load_library(lib_fn=lib)
d = header_def = get_header_defs(libtiff=libtiff, lib_fn=lib)
all_tags = get_tag_names(header_def)
name_to_define_map,define_to_name_map = create_tag_maps(all_tags)
# types defined by tiff.h
class c_ttag_t(ctypes.c_uint): pass
class c_tdir_t(ctypes.c_uint16): pass
class c_tsample_t(ctypes.c_uint16): pass
class c_tstrip_t(ctypes.c_uint32): pass
class c_ttile_t(ctypes.c_uint32): pass
class c_tsize_t(ctypes.c_int32): pass
class c_toff_t(ctypes.c_int32): pass
class c_tdata_t(ctypes.c_void_p): pass
class c_thandle_t(ctypes.c_void_p): pass
# types defined for creating custom tags
FIELD_CUSTOM = 65
class TIFFDataType(object):
"""Place holder for the enum in C.
typedef enum {
TIFF_NOTYPE = 0, /* placeholder */
TIFF_BYTE = 1, /* 8-bit unsigned integer */
TIFF_ASCII = 2, /* 8-bit bytes w/ last byte null */
TIFF_SHORT = 3, /* 16-bit unsigned integer */
TIFF_LONG = 4, /* 32-bit unsigned integer */
TIFF_RATIONAL = 5, /* 64-bit unsigned fraction */
TIFF_SBYTE = 6, /* !8-bit signed integer */
TIFF_UNDEFINED = 7, /* !8-bit untyped data */
TIFF_SSHORT = 8, /* !16-bit signed integer */
TIFF_SLONG = 9, /* !32-bit signed integer */
TIFF_SRATIONAL = 10, /* !64-bit signed fraction */
TIFF_FLOAT = 11, /* !32-bit IEEE floating point */
TIFF_DOUBLE = 12, /* !64-bit IEEE floating point */
TIFF_IFD = 13 /* %32-bit unsigned integer (offset) */
} TIFFDataType;
"""
ctype = ctypes.c_int
TIFF_NOTYPE = 0
TIFF_BYTE = 1
TIFF_ASCII = 2
TIFF_SHORT = 3
TIFF_LONG = 4
TIFF_RATIONAL = 5
TIFF_SBYTE = 6
TIFF_UNDEFINED = 7
TIFF_SSHORT = 8
TIFF_SLONG = 9
TIFF_SRATIONAL = 10
TIFF_FLOAT = 11
TIFF_DOUBLE = 12
TIFF_IFD = 13
ttype2ctype = {
TIFFDataType.TIFF_NOTYPE : None,
TIFFDataType.TIFF_BYTE : ctypes.c_ubyte,
TIFFDataType.TIFF_ASCII : ctypes.c_char_p,
TIFFDataType.TIFF_SHORT : ctypes.c_uint16,
TIFFDataType.TIFF_LONG : ctypes.c_uint32,
TIFFDataType.TIFF_RATIONAL : ctypes.c_double, # Should be unsigned
TIFFDataType.TIFF_SBYTE : ctypes.c_byte,
TIFFDataType.TIFF_UNDEFINED : ctypes.c_char,
TIFFDataType.TIFF_SSHORT : ctypes.c_int16,
TIFFDataType.TIFF_SLONG : ctypes.c_int32,
TIFFDataType.TIFF_SRATIONAL : ctypes.c_double,
TIFFDataType.TIFF_FLOAT : ctypes.c_float,
TIFFDataType.TIFF_DOUBLE : ctypes.c_double,
TIFFDataType.TIFF_IFD : ctypes.c_uint32
}
class TIFFFieldInfo(ctypes.Structure):
"""
typedef struct {
ttag_t field_tag; /* field's tag */
short field_readcount; /* read count/TIFF_VARIABLE/TIFF_SPP */
short field_writecount; /* write count/TIFF_VARIABLE */
TIFFDataType field_type; /* type of associated data */
unsigned short field_bit; /* bit in fieldsset bit vector */
unsigned char field_oktochange; /* if true, can change while writing */
unsigned char field_passcount; /* if true, pass dir count on set */
char *field_name; /* ASCII name */
} TIFFFieldInfo;
"""
_fields_ = [
("field_tag", ctypes.c_uint32),
("field_readcount", ctypes.c_short),
("field_writecount", ctypes.c_short),
("field_type", TIFFDataType.ctype),
("field_bit", ctypes.c_ushort),
("field_oktochange", ctypes.c_ubyte),
("field_passcount", ctypes.c_ubyte),
("field_name", ctypes.c_char_p)
]
# Custom Tags
class TIFFExtender(object):
def __init__(self, new_tag_list):
self._ParentExtender = None
self.new_tag_list = new_tag_list
def extender_pyfunc(tiff_struct):
libtiff.TIFFMergeFieldInfo(tiff_struct, self.new_tag_list, len(self.new_tag_list))
if self._ParentExtender:
self._ParentExtender(tiff_struct)
# Just make being a void function more obvious
return
# ctypes callback function prototype (return void, arguments void pointer)
self.EXT_FUNC = ctypes.CFUNCTYPE(None, ctypes.c_void_p)
# ctypes callback function instance
self.EXT_FUNC_INST = self.EXT_FUNC(extender_pyfunc)
libtiff.TIFFSetTagExtender.restype = ctypes.CFUNCTYPE(None, ctypes.c_void_p)
self._ParentExtender = libtiff.TIFFSetTagExtender(self.EXT_FUNC_INST)
def add_tags(tag_list):
tag_list_array = (TIFFFieldInfo * len(tag_list))(*tag_list)
for field_info in tag_list_array:
name = "TIFFTAG_" + str(field_info.field_name).upper()
exec 'global %s; %s = %s' % (name, name, field_info.field_tag)
if field_info.field_writecount > 1 and field_info.field_type != TIFFDataType.TIFF_ASCII:
tifftags[field_info.field_tag] = (ttype2ctype[field_info.field_type]*field_info.field_writecount, lambda d:d.contents[:])
else:
tifftags[field_info.field_tag] = (ttype2ctype[field_info.field_type], lambda d:d.value)
return TIFFExtender(tag_list_array)
tifftags = {
# conversion of None means it is an array of known size (no count is passed to GetField)
# conversion of None shouldn't need to be used for ASCII values
#TODO:
#TIFFTAG_DOTRANGE 2 uint16*
#TIFFTAG_HALFTONEHINTS 2 uint16*
#TIFFTAG_PAGENUMBER 2 uint16*
#TIFFTAG_YCBCRSUBSAMPLING 2 uint16*
#TIFFTAG_EXTRASAMPLES 2 uint16*,uint16** count & types array
#TIFFTAG_FAXFILLFUNC 1 TIFFFaxFillFunc* G3/G4 compression pseudo-tag
#TIFFTAG_JPEGTABLES 2 u_short*,void** count & tables
#TIFFTAG_SUBIFD 2 uint16*,uint32** count & offsets array
#TIFFTAG_TRANSFERFUNCTION 1 or 3 uint16** 1<<BitsPerSample entry arrays
#TIFFTAG_ICCPROFILE 2 uint32*,void** count, profile data
# TIFFTAG: type, conversion
TIFFTAG_COLORMAP: (ctypes.c_uint16, lambda d:(d[0].contents[:],d[1].contents[:],d[2].contents[:])),# 3 uint16* for Set, 3 uint16** for Get; size:(1<<BitsPerSample arrays)
TIFFTAG_ARTIST: (ctypes.c_char_p, lambda d:d.value),
TIFFTAG_COPYRIGHT: (ctypes.c_char_p, lambda d:d.value),
TIFFTAG_DATETIME: (ctypes.c_char_p, lambda d:d.value),
TIFFTAG_DOCUMENTNAME: (ctypes.c_char_p, lambda d:d.value),
TIFFTAG_HOSTCOMPUTER: (ctypes.c_char_p, lambda d:d.value),
TIFFTAG_IMAGEDESCRIPTION: (ctypes.c_char_p, lambda d:d.value),
TIFFTAG_INKNAMES: (ctypes.c_char_p, lambda d:d.value),
TIFFTAG_MAKE: (ctypes.c_char_p, lambda d:d.value),
TIFFTAG_MODEL: (ctypes.c_char_p, lambda d:d.value),
TIFFTAG_PAGENAME: (ctypes.c_char_p, lambda d:d.value),
TIFFTAG_SOFTWARE: (ctypes.c_char_p, lambda d:d.value),
TIFFTAG_TARGETPRINTER: (ctypes.c_char_p, lambda d:d.value),
TIFFTAG_BADFAXLINES: (ctypes.c_uint32, lambda d:d.value),
TIFFTAG_CONSECUTIVEBADFAXLINES: (ctypes.c_uint32, lambda d:d.value),
TIFFTAG_GROUP3OPTIONS: (ctypes.c_uint32, lambda d:d.value),
TIFFTAG_GROUP4OPTIONS: (ctypes.c_uint32, lambda d:d.value),
TIFFTAG_IMAGEDEPTH: (ctypes.c_uint32, lambda d:d.value),
TIFFTAG_IMAGEWIDTH: (ctypes.c_uint32, lambda d:d.value),
TIFFTAG_IMAGELENGTH: (ctypes.c_uint32, lambda d:d.value),
TIFFTAG_SAMPLESPERPIXEL: (ctypes.c_uint32, lambda d:d.value),
TIFFTAG_ROWSPERSTRIP: (ctypes.c_uint32, lambda d:d.value),
TIFFTAG_SUBFILETYPE: (ctypes.c_uint32, lambda d:d.value),
TIFFTAG_TILEDEPTH: (ctypes.c_uint32, lambda d:d.value),
TIFFTAG_TILELENGTH: (ctypes.c_uint32, lambda d:d.value),
TIFFTAG_TILEWIDTH: (ctypes.c_uint32, lambda d:d.value),
# TODO: Handle variable length pointers
TIFFTAG_STRIPBYTECOUNTS: (ctypes.POINTER(ctypes.c_uint32), lambda d:d.contents),
TIFFTAG_STRIPOFFSETS: (ctypes.POINTER(ctypes.c_uint32), lambda d:d.contents),
TIFFTAG_TILEBYTECOUNTS: (ctypes.POINTER(ctypes.c_uint32), lambda d:d.contents),
TIFFTAG_TILEOFFSETS: (ctypes.POINTER(ctypes.c_uint32), lambda d:d.contents),
TIFFTAG_BITSPERSAMPLE: (ctypes.c_uint16, lambda d:d.value),
TIFFTAG_CLEANFAXDATA: (ctypes.c_uint16, lambda d:d.value),
TIFFTAG_COMPRESSION: (ctypes.c_uint16, lambda d:d.value),
TIFFTAG_DATATYPE: (ctypes.c_uint16, lambda d:d.value),
TIFFTAG_FILLORDER: (ctypes.c_uint16, lambda d:d.value),
TIFFTAG_INKSET: (ctypes.c_uint16, lambda d:d.value),
TIFFTAG_MATTEING: (ctypes.c_uint16, lambda d:d.value),
TIFFTAG_MAXSAMPLEVALUE: (ctypes.c_uint16, lambda d:d.value),
TIFFTAG_MINSAMPLEVALUE: (ctypes.c_uint16, lambda d:d.value),
TIFFTAG_ORIENTATION: (ctypes.c_uint16, lambda d:d.value),
TIFFTAG_PHOTOMETRIC: (ctypes.c_uint16, lambda d:d.value),
TIFFTAG_PLANARCONFIG: (ctypes.c_uint16, lambda d:d.value),
TIFFTAG_PREDICTOR: (ctypes.c_uint16, lambda d:d.value),
TIFFTAG_RESOLUTIONUNIT: (ctypes.c_uint16, lambda d:d.value),
TIFFTAG_SAMPLEFORMAT: (ctypes.c_uint16, lambda d:d.value),
TIFFTAG_YCBCRPOSITIONING: (ctypes.c_uint16, lambda d:d.value),
TIFFTAG_JPEGQUALITY: (ctypes.c_int, lambda d:d.value),
TIFFTAG_JPEGCOLORMODE: (ctypes.c_int, lambda d:d.value),
TIFFTAG_JPEGTABLESMODE: (ctypes.c_int, lambda d:d.value),
TIFFTAG_FAXMODE: (ctypes.c_int, lambda d:d.value),
TIFFTAG_SMAXSAMPLEVALUE: (ctypes.c_double, lambda d:d.value),
TIFFTAG_SMINSAMPLEVALUE: (ctypes.c_double, lambda d:d.value),
TIFFTAG_STONITS: (ctypes.c_double, lambda d:d.value),
TIFFTAG_XPOSITION: (ctypes.c_float, lambda d:d.value),
TIFFTAG_XRESOLUTION: (ctypes.c_float, lambda d:d.value),
TIFFTAG_YPOSITION: (ctypes.c_float, lambda d:d.value),
TIFFTAG_YRESOLUTION: (ctypes.c_float, lambda d:d.value),
TIFFTAG_PRIMARYCHROMATICITIES: (ctypes.c_float*6, lambda d:d.contents[:]),
TIFFTAG_REFERENCEBLACKWHITE: (ctypes.c_float*6, lambda d:d.contents[:]),
TIFFTAG_WHITEPOINT: (ctypes.c_float*2, lambda d:d.contents[:]),
TIFFTAG_YCBCRCOEFFICIENTS: (ctypes.c_float*3, lambda d:d.contents[:]),
TIFFTAG_CZ_LSMINFO: (c_toff_t, lambda d:d.value) # offset to CZ_LSMINFO record
}
def debug(func):
return func
def new_func(*args, **kws):
print 'Calling',func.__name__
r = func (*args, **kws)
return r
return new_func
class TIFF(ctypes.c_void_p):
""" Holds a pointer to TIFF object.
To open a tiff file for reading, use
tiff = TIFF.open (filename, more='r')
To read an image from a tiff file, use
image = tiff.read_image()
where image will be a numpy array.
To read all images from a tiff file, use
for image in tiff.iter_images():
# do stuff with image
To creat a tiff file containing numpy array as image, use
tiff = TIFF.open(filename, mode='w')
tiff.write_image(array)
tiff.close()
To copy and change tags from a tiff file:
tiff_in = TIFF.open(filename_in)
tiff_in.copy (filename_out, compression=, bitspersample=, sampleformat=,...)
"""
@staticmethod
def get_tag_name(tagvalue):
for kind in define_to_name_map:
tagname = define_to_name_map[kind].get (tagvalue)
if tagname is not None:
return tagname
@staticmethod
def get_tag_define(tagname):
if '_' in tagname:
kind, name = tagname.rsplit('_',1)
return name_to_define_map[kind.title()][tagname.upper()]
for kind in define_to_name_map:
tagvalue = name_to_define_map[kind].get((kind+'_'+tagname).upper ())
if tagvalue is not None:
return tagvalue
@classmethod
def open(cls, filename, mode='r'):
""" Open tiff file as TIFF.
"""
tiff = libtiff.TIFFOpen(filename, mode)
if tiff.value is None:
raise TypeError ('Failed to open file '+`filename`)
return tiff
@staticmethod
def get_numpy_type(bits, sample_format=None):
""" Return numpy dtype corresponding to bits and sample format.
"""
typ = None
if bits==1:
pass
elif sample_format==SAMPLEFORMAT_IEEEFP:
typ = getattr(np,'float%s' % (bits))
elif sample_format==SAMPLEFORMAT_UINT or sample_format is None:
typ = getattr(np,'uint%s' % (bits))
elif sample_format==SAMPLEFORMAT_INT:
typ = getattr(np,'int%s' % (bits))
elif sample_format==SAMPLEFORMAT_COMPLEXIEEEFP:
typ = getattr(np,'complex%s' % (bits))
else:
raise NotImplementedError (`sample_format`)
return typ
@debug
def read_image(self, verbose=False):
""" Read image from TIFF and return it as an array.
"""
width = self.GetField('ImageWidth')
height = self.GetField('ImageLength')
bits = self.GetField('BitsPerSample')
sample_format = self.GetField('SampleFormat')
compression = self.GetField('Compression')
typ = self.get_numpy_type(bits, sample_format)
if typ is None:
if bits==1: # TODO: check for correctness
typ = np.uint8
itemsize = 1
elif bits==4: # TODO: check for correctness
typ = np.uint32
itemsize = 4
else:
raise NotImplementedError (`bits`)
else:
itemsize = bits/8
size = width * height * itemsize
arr = np.zeros((height, width), typ)
if compression==COMPRESSION_NONE:
ReadStrip = self.ReadRawStrip
else:
ReadStrip = self.ReadEncodedStrip
pos = 0
elem = None
for strip in range (self.NumberOfStrips()):
if elem is None:
elem = ReadStrip(strip, arr.ctypes.data + pos, size)
elif elem:
elem = ReadStrip(strip, arr.ctypes.data + pos, min(size - pos, elem))
pos += elem
return arr
@staticmethod
def _fix_compression(value):
if isinstance(value, int):
return value
elif value is None:
return COMPRESSION_NONE
elif isinstance(value, str):
return name_to_define_map['Compression']['COMPRESSION_'+value.upper()]
else:
raise NotImplementedError(`value`)
@staticmethod
def _fix_sampleformat(value):
if isinstance(value, int):
return value
elif value is None:
return SAMPLEFORMAT_UINT
elif isinstance(value, str):
return dict(int=SAMPLEFORMAT_INT, uint=SAMPLEFORMAT_UINT,
float=SAMPLEFORMAT_IEEEFP, complex=SAMPLEFORMAT_COMPLEXIEEEFP)[value.lower()]
else:
raise NotImplementedError(`value`)
def write_image(self, arr, compression=None, write_rgb=False):
""" Write array as TIFF image.
Parameters
----------
arr : :numpy:`ndarray`
Specify image data of rank 1 to 3.
compression : {None, 'ccittrle', 'ccittfax3','ccitt_t4','ccittfax4','ccitt_t6','lzw','ojpeg','jpeg','next','ccittrlew','packbits','thunderscan','it8ctpad','it8lw','it8mp','it8bl','pixarfilm','pixarlog','deflate','adobe_deflate','dcs','jbig','sgilog','sgilog24','jp2000'}
write_rgb: bool
Write rgb image if data is of size 3xWxH (otherwise, writes a multipage TIFF).
"""
COMPRESSION = self._fix_compression (compression)
arr = np.ascontiguousarray(arr)
sample_format = None
if arr.dtype in np.sctypes['float']:
sample_format = SAMPLEFORMAT_IEEEFP
elif arr.dtype in np.sctypes['uint']+[numpy.bool]:
sample_format = SAMPLEFORMAT_UINT
elif arr.dtype in np.sctypes['int']:
sample_format = SAMPLEFORMAT_INT
elif arr.dtype in np.sctypes['complex']:
sample_format = SAMPLEFORMAT_COMPLEXIEEEFP
else:
raise NotImplementedError(`arr.dtype`)
shape=arr.shape
bits = arr.itemsize * 8
if compression==COMPRESSION_NONE:
WriteStrip = self.WriteRawStrip
else:
WriteStrip = self.WriteEncodedStrip
if len(shape)==1:
width, = shape
size = width * arr.itemsize
self.SetField(TIFFTAG_IMAGEWIDTH, width)
self.SetField(TIFFTAG_IMAGELENGTH, 1)
self.SetField(TIFFTAG_BITSPERSAMPLE, bits)
self.SetField(TIFFTAG_COMPRESSION, COMPRESSION)
self.SetField(TIFFTAG_PHOTOMETRIC, PHOTOMETRIC_MINISBLACK)
self.SetField(TIFFTAG_ORIENTATION, ORIENTATION_RIGHTTOP)
self.SetField(TIFFTAG_PLANARCONFIG, PLANARCONFIG_CONTIG)
if sample_format is not None:
self.SetField(TIFFTAG_SAMPLEFORMAT, sample_format)
WriteStrip(0, arr.ctypes.data, size)
self.WriteDirectory()
elif len(shape)==2:
height, width = shape
size = width * height * arr.itemsize
self.SetField(TIFFTAG_IMAGEWIDTH, width)
self.SetField(TIFFTAG_IMAGELENGTH, height)
self.SetField(TIFFTAG_BITSPERSAMPLE, bits)
self.SetField(TIFFTAG_COMPRESSION, COMPRESSION)
#self.SetField(TIFFTAG_SAMPLESPERPIXEL, 1)
self.SetField(TIFFTAG_PHOTOMETRIC, PHOTOMETRIC_MINISBLACK)
self.SetField(TIFFTAG_ORIENTATION, ORIENTATION_RIGHTTOP)
self.SetField(TIFFTAG_PLANARCONFIG, PLANARCONFIG_CONTIG)
if sample_format is not None:
self.SetField(TIFFTAG_SAMPLEFORMAT, sample_format)
WriteStrip(0, arr.ctypes.data, size)
self.WriteDirectory()
elif len(shape)==3:
depth, height, width = shape
size = width * height * arr.itemsize
if depth == 3 and write_rgb:
self.SetField(TIFFTAG_IMAGEWIDTH, width)
self.SetField(TIFFTAG_IMAGELENGTH, height)
self.SetField(TIFFTAG_BITSPERSAMPLE, bits)
self.SetField(TIFFTAG_COMPRESSION, COMPRESSION)
self.SetField(TIFFTAG_SAMPLESPERPIXEL, 3)
self.SetField(TIFFTAG_PHOTOMETRIC, PHOTOMETRIC_RGB)
self.SetField(TIFFTAG_PLANARCONFIG, PLANARCONFIG_SEPARATE)
if sample_format is not None:
self.SetField(TIFFTAG_SAMPLEFORMAT, sample_format)
for n in range(depth):
WriteStrip(n, arr[n, :, :].ctypes.data, size)
self.WriteDirectory()
else:
for n in range(depth):
self.SetField(TIFFTAG_IMAGEWIDTH, width)
self.SetField(TIFFTAG_IMAGELENGTH, height)
self.SetField(TIFFTAG_BITSPERSAMPLE, bits)
self.SetField(TIFFTAG_COMPRESSION, COMPRESSION)
#self.SetField(TIFFTAG_SAMPLESPERPIXEL, 1)
self.SetField(TIFFTAG_PHOTOMETRIC, PHOTOMETRIC_MINISBLACK)
self.SetField(TIFFTAG_ORIENTATION, ORIENTATION_RIGHTTOP)
self.SetField(TIFFTAG_PLANARCONFIG, PLANARCONFIG_CONTIG)
if sample_format is not None:
self.SetField(TIFFTAG_SAMPLEFORMAT, sample_format)
WriteStrip(0, arr[n].ctypes.data, size)
self.WriteDirectory()
else:
raise NotImplementedError (`shape`)
def write_tiles(self, arr):
# Write rgb image if data is of shape HxWx3.
num_trows = self.GetField("TileLength")
if num_trows is None:
raise ValueError("TIFFTAG_TILELENGTH must be set to write tiles")
num_tcols = self.GetField("TileWidth")
if num_tcols is None:
raise ValueError("TIFFTAG_TILEWIDTH must be set to write tiles")
num_irows = self.GetField("ImageLength")
if num_irows is None:
raise ValueError("TIFFTAG_IMAGELENGTH must be set to write tiles")
num_icols = self.GetField("ImageWidth")
if num_icols is None:
raise ValueError("TIFFTAG_TILEWIDTH must be set to write tiles")
if arr.shape[0] != num_irows or arr.shape[1] != num_icols:
raise ValueError("Input array %r must have same shape as image tags %r" % (
arr.shape,(num_irows,num_icols)))
if self.is_rgb():
if len(arr.shape) != 3 or arr.shape[2] != 3:
raise ValueError("Inconsistent data shape for an RGB image %s" % str(arr.shape))
zero_tile = np.zeros((num_trows, num_tcols, 3), dtype=arr.dtype)
else:
zero_tile = np.zeros((num_trows, num_tcols), dtype=arr.dtype)
status = 0
# Rows
for i in range(0, num_irows, num_trows):
# Cols
for j in range(0, num_icols, num_tcols):
# If we are over the edge of the image, use 0 as fill
if ((i + num_trows) > num_irows) or ((j + num_tcols) > num_icols):
x = zero_tile.copy()
x[:num_irows-i,:num_icols-j] = arr[i:i+num_trows, j:j+num_tcols]
else:
x = arr[i:i+num_trows,j:j+num_tcols]
x = np.ascontiguousarray(x)
r = libtiff.TIFFWriteTile(self, x.ctypes.data, j, i, 0, 0)
status = status + r.value
return status
def read_tiles(self, dtype=np.uint8):
num_trows = self.GetField("TileLength")
if num_trows is None:
raise ValueError("TIFFTAG_TILELENGTH must be set to write tiles")
num_tcols = self.GetField("TileWidth")
if num_tcols is None:
raise ValueError("TIFFTAG_TILEWIDTH must be set to write tiles")
num_irows = self.GetField("ImageLength")
if num_irows is None:
raise ValueError("TIFFTAG_IMAGELENGTH must be set to write tiles")
num_icols = self.GetField("ImageWidth")
if num_icols is None:
raise ValueError("TIFFTAG_TILEWIDTH must be set to write tiles")
if self.is_rgb():
full_image = np.zeros((num_irows, num_icols, 3), dtype=dtype)
tmp_tile = np.zeros((num_trows, num_tcols, 3), dtype=dtype)
else:
full_image = np.zeros((num_irows, num_icols), dtype=dtype)
tmp_tile = np.zeros((num_trows, num_tcols), dtype=dtype)
tmp_tile = np.ascontiguousarray(tmp_tile)
for i in range(0, num_irows, num_trows):
for j in range(0, num_icols, num_tcols):
r = libtiff.TIFFReadTile(self, tmp_tile.ctypes.data, j, i, 0, 0)
if not r:
raise ValueError("Could not read tile x:%d,y:%d from file" % (j,i))
print >> sys.stderr, tmp_tile.shape, tmp_tile
if ((i + num_trows) > num_irows) or ((j + num_tcols) > num_icols):
# We only need part of the tile because we are on the edge
full_image[i:i+num_trows, j:j+num_tcols] = tmp_tile[:num_irows-i,:num_icols-j]
else:
full_image[i:i+num_trows, j:j+num_tcols] = tmp_tile[:,:]
return full_image
def iter_images(self, verbose=False):
""" Iterator of all images in a TIFF file.
"""
yield self.read_image(verbose=verbose)
if not self.LastDirectory():
while 1:
self.ReadDirectory()
yield self.read_image(verbose=verbose)
if self.LastDirectory():
break
def is_rgb(self):
if self.GetField("Photometric") == PHOTOMETRIC_RGB:
spp = self.GetField("SamplesPerPixel")
if spp != 3:
raise ValueError("TIFFTAG_SAMPLEPERPIXEl is inconsistent for a RGB image, reading %d expecting 3" %
spp)
bps = self.GetField("BitsPerSample")
if bps != 8:
raise ValueError("TIFFTAG_BITSPERSAMPL is inconsistent for a RGB image, reading %d expecting 8" %
bps)
return True
return False
def __del__(self):
self.close()
@debug
def FileName(self): return libtiff.TIFFFileName(self)
@debug
def CurrentRow(self): return libtiff.TIFFCurrentRow(self)
@debug
def CurrentStrip(self): return libtiff.TIFFCurrentStrip(self)
@debug
def CurrentTile(self): return libtiff.TIFFCurrentTile(self)
@debug
def CurrentDirectory(self): return libtiff.TIFFCurrentDirectory(self)
@debug
def LastDirectory(self): return libtiff.TIFFLastDirectory(self)
@debug
def ReadDirectory(self): return libtiff.TIFFReadDirectory(self)
@debug
def WriteDirectory(self):
r = libtiff.TIFFWriteDirectory(self)
assert r==1, `r`
@debug
def SetDirectory(self, dirnum): return libtiff.TIFFSetDirectory(self, dirnum)
@debug
def Fileno(self): return libtiff.TIFFFileno(self)
@debug
def GetMode(self): return libtiff.TIFFGetMode(self)
@debug
def IsTiled(self): return libtiff.TIFFIsTiled(self)
@debug
def IsByteSwapped(self): return libtiff.TIFFIsByteSwapped(self)
@debug
def IsUpSampled(self): return libtiff.TIFFIsUpSampled(self)
@debug
def IsMSB2LSB(self): return libtiff.TIFFIsMSB2LSB(self)
@debug
def NumberOfStrips(self): return libtiff.TIFFNumberOfStrips(self).value
#@debug
def ReadRawStrip(self, strip, buf, size):
return libtiff.TIFFReadRawStrip(self, strip, buf, size).value
def ReadEncodedStrip(self, strip, buf, size):
return libtiff.TIFFReadEncodedStrip(self, strip, buf, size).value
def StripSize(self):
return libtiff.TIFFStripSize(self).value
def RawStripSize(self, strip):
return libtiff.TIFFStripSize(self, strip).value
@debug
def WriteRawStrip(self, strip, buf, size):
r = libtiff.TIFFWriteRawStrip(self, strip, buf, size)
assert r.value==size,`r.value, size`
@debug
def WriteEncodedStrip(self, strip, buf, size):
r = libtiff.TIFFWriteEncodedStrip(self, strip, buf, size)
assert r.value==size,`r.value, size`
closed = False
def close(self, libtiff=libtiff):
if not self.closed and self.value is not None:
libtiff.TIFFClose(self)
self.closed = True
return
#def (self): return libtiff.TIFF(self)
@debug
def GetField(self, tag, ignore_undefined_tag=True, count=None):
""" Return TIFF field value with tag.
tag can be numeric constant TIFFTAG_<tagname> or a
string containing <tagname>.
"""
if tag in ['PixelSizeX', 'PixelSizeY', 'RelativeTime']:
descr = self.GetField('ImageDescription')
if not descr:
return
i = descr.find (tag)
if i==-1:
return
value = eval(descr[i+len (tag):].lstrip().split()[0])
return value
if isinstance(tag, str):
tag = eval('TIFFTAG_' + tag.upper())
t = tifftags.get(tag)
if t is None:
if not ignore_undefined_tag:
print 'Warning: no tag %r defined' % (tag)
return
data_type, convert = t
if tag == TIFFTAG_COLORMAP:
bps = self.GetField("BitsPerSample")
if bps is None:
log.warning("BitsPerSample is required to get ColorMap, assuming 8 bps...")
bps = 8
num_cmap_elems = 1 << bps
data_type = data_type * num_cmap_elems
pdt = ctypes.POINTER(data_type)
rdata = pdt()
gdata = pdt()
bdata = pdt()
rdata_ptr = ctypes.byref(rdata)
gdata_ptr = ctypes.byref(gdata)
bdata_ptr = ctypes.byref(bdata)
# ignore count, it's not used for colormap
libtiff.TIFFGetField.argtypes = libtiff.TIFFGetField.argtypes[:2] + [ctypes.c_void_p]*3
r = libtiff.TIFFGetField(self, tag, rdata_ptr, gdata_ptr, bdata_ptr)
data = (rdata,gdata,bdata)
else:
if hasattr(data_type, "_length_"):
pdt = ctypes.POINTER(data_type)
data = pdt()
data_ptr = ctypes.byref(data)
else:
data = data_type()
data_ptr = ctypes.byref(data)
if count is None:
libtiff.TIFFGetField.argtypes = libtiff.TIFFGetField.argtypes[:2] + [ctypes.c_void_p]
r = libtiff.TIFFGetField(self, tag, data_ptr)
else:
libtiff.TIFFGetField.argtypes = libtiff.TIFFGetField.argtypes[:2] + [ctypes.c_uint, ctypes.c_void_p]
r = libtiff.TIFFGetField(self, tag, count, data_ptr)
if not r: # tag not defined for current directory
if not ignore_undefined_tag:
print 'Warning: tag %r not defined in currect directory' % (tag)
return None
return convert(data)
#@debug
def SetField (self, tag, value, count=None):
""" Set TIFF field value with tag.
tag can be numeric constant TIFFTAG_<tagname> or a
string containing <tagname>.
"""
if isinstance(tag, str):
tag = eval('TIFFTAG_' + tag.upper())
t = tifftags.get(tag)
if t is None:
print 'Warning: no tag %r defined' % (tag)
return
data_type, convert = t
if data_type == ctypes.c_float:
data_type = ctypes.c_double
if tag == TIFFTAG_COLORMAP:
# ColorMap passes 3 values each a c_uint16 pointer
try:
if len(value) != 3:
log.error("TIFFTAG_COLORMAP expects 3 uint16* arrays (not %d) as a list/tuple of lists" % len(value))
r_arr,g_arr,b_arr = None,None,None
else:
r_arr,g_arr,b_arr = value
except TypeError:
log.error("TIFFTAG_COLORMAP expects 3 uint16* arrays as a list/tuple of lists")
r_arr,g_arr,b_arr = None,None,None
if r_arr is None:
return
bps = self.GetField("BitsPerSample")
if bps is None:
log.warning("BitsPerSample is required to get ColorMap, assuming 8 bps...")
bps = 8
num_cmap_elems = 1 << bps
data_type = data_type * num_cmap_elems
r_ptr = data_type(*r_arr)
g_ptr = data_type(*g_arr)
b_ptr = data_type(*b_arr)
libtiff.TIFFSetField.argtypes = libtiff.TIFFSetField.argtypes[:2] + [ctypes.POINTER(data_type)]*3
r = libtiff.TIFFSetField(self, tag, r_ptr, g_ptr, b_ptr)
else:
try:
# Value is an iterable
value_length = len(value)
data = data_type(*value)
except TypeError:
# Value is not an iterable
data = data_type(value)
if count is None:
libtiff.TIFFSetField.argtypes = libtiff.TIFFSetField.argtypes[:2] + [data_type]
r = libtiff.TIFFSetField(self, tag, data)
else:
libtiff.TIFFSetField.argtypes = libtiff.TIFFSetField.argtypes[:2] + [ctypes.c_uint, data_type]
r = libtiff.TIFFSetField(self, tag, count, data)
return r
def info(self):
""" Return a string containing <tag name: field value> map.
"""
l = []
l.append ('FileName: %s' % (self.FileName()))
for tagname in ['Artist', 'CopyRight', 'DateTime', 'DocumentName',
'HostComputer', 'ImageDescription', 'InkNames',
'Make', 'Model', 'PageName', 'Software', 'TargetPrinter',
'BadFaxLines', 'ConsecutiveBadFaxLines',
'Group3Options', 'Group4Options',
'ImageDepth', 'ImageWidth', 'ImageLength',
'RowsPerStrip', 'SubFileType',
'TileDepth', 'TileLength', 'TileWidth',
'StripByteCounts', 'StripOffSets',
'TileByteCounts', 'TileOffSets',
'BitsPerSample', 'CleanFaxData', 'Compression',
'DataType', 'FillOrder', 'InkSet', 'Matteing',
'MaxSampleValue', 'MinSampleValue', 'Orientation',
'PhotoMetric', 'PlanarConfig', 'Predictor',
'ResolutionUnit', 'SampleFormat', 'YCBCRPositioning',
'JPEGQuality', 'JPEGColorMode', 'JPEGTablesMode',
'FaxMode', 'SMaxSampleValue', 'SMinSampleValue',
#'Stonits',
'XPosition', 'YPosition', 'XResolution', 'YResolution',
'PrimaryChromaticities', 'ReferenceBlackWhite',
'WhitePoint', 'YCBCRCoefficients',
'PixelSizeX','PixelSizeY', 'RelativeTime',
'CZ_LSMInfo'
]:
v = self.GetField(tagname)
if v:
if isinstance (v, int):
v = define_to_name_map.get(tagname, {}).get(v, v)
l.append('%s: %s' % (tagname, v))
if tagname=='CZ_LSMInfo':
print CZ_LSMInfo(self)
return '\n'.join(l)
def copy(self, filename, **kws):
""" Copy opened TIFF file to a new file.
Use keyword arguments to redefine tag values.
Parameters
----------
filename : str
Specify the name of file where TIFF file is copied to.
compression : {'none', 'lzw', 'deflate', ...}
Specify compression scheme.
bitspersample : {8,16,32,64,128,256}
Specify bit size of a sample.
sampleformat : {'uint', 'int', 'float', 'complex'}
Specify sample format.
"""
other = TIFF.open(filename, mode='w')
define_rewrite = {}
for name, value in kws.items():
define = TIFF.get_tag_define(name)
assert define is not None
if name=='compression':
value = TIFF._fix_compression(value)
if name=='sampleformat':
value = TIFF._fix_sampleformat(value)
define_rewrite[define] = value
name_define_list = name_to_define_map['TiffTag'].items()
self.SetDirectory(0)
self.ReadDirectory()
while 1:
other.SetDirectory(self.CurrentDirectory())
bits = self.GetField('BitsPerSample')
sample_format = self.GetField('SampleFormat')
assert bits >=8, `bits, sample_format, dtype`
itemsize = bits // 8
dtype = self.get_numpy_type(bits, sample_format)
for name, define in name_define_list:
orig_value = self.GetField(define)
if orig_value is None and define not in define_rewrite:
continue
if name.endswith('OFFSETS') or name.endswith('BYTECOUNTS'):
continue
if define in define_rewrite:
value = define_rewrite[define]
else:
value = orig_value
if value is None:
continue
other.SetField(define, value)
new_bits = other.GetField('BitsPerSample')
new_sample_format = other.GetField('SampleFormat')
new_dtype = other.get_numpy_type(new_bits, new_sample_format)
assert new_bits >=8, `new_bits, new_sample_format, new_dtype`
new_itemsize = new_bits // 8
strip_size = self.StripSize()
new_strip_size = self.StripSize()
buf = np.zeros(strip_size // itemsize, dtype)
for strip in range(self.NumberOfStrips()):
elem = self.ReadEncodedStrip(strip, buf.ctypes.data, strip_size)
if elem>0:
new_buf = buf.astype(new_dtype)
other.WriteEncodedStrip(strip, new_buf.ctypes.data, (elem * new_itemsize)//itemsize)
self.ReadDirectory()
if self.LastDirectory ():
break
other.close ()
import struct
import numpy
class CZ_LSMInfo:
def __init__(self, tiff):
self.tiff = tiff
self.filename = tiff.FileName()
self.offset = tiff.GetField(TIFFTAG_CZ_LSMINFO)
self.extract_info()
def extract_info (self):
if self.offset is None:
return
f = libtiff.TIFFFileno(self.tiff)
fd = os.fdopen(f, 'r')
pos = fd.tell()
self.offset = self.tiff.GetField(TIFFTAG_CZ_LSMINFO)
print os.lseek(f, 0, 1)
print pos
#print libtiff.TIFFSeekProc(self.tiff, 0, 1)
fd.seek(0)
print struct.unpack ('HH', fd.read (4))
print struct.unpack('I',fd.read (4))
print struct.unpack('H',fd.read (2))
fd.seek(self.offset)
d = [('magic_number', 'i4'),
('structure_size', 'i4')]
print pos, numpy.rec.fromfile(fd, d, 1)
fd.seek(pos)
#print hex (struct.unpack('I', fd.read (4))[0])
#fd.close()
def __str__ (self):
return '%s: %s' % (self.filename, self.offset)
libtiff.TIFFOpen.restype = TIFF
libtiff.TIFFOpen.argtypes = [ctypes.c_char_p, ctypes.c_char_p]
libtiff.TIFFFileName.restype = ctypes.c_char_p
libtiff.TIFFFileName.argtypes = [TIFF]
libtiff.TIFFFileno.restype = ctypes.c_int
libtiff.TIFFFileno.argtypes = [TIFF]
libtiff.TIFFCurrentRow.restype = ctypes.c_uint32
libtiff.TIFFCurrentRow.argtypes = [TIFF]
libtiff.TIFFCurrentStrip.restype = c_tstrip_t
libtiff.TIFFCurrentStrip.argtypes = [TIFF]
libtiff.TIFFCurrentTile.restype = c_ttile_t
libtiff.TIFFCurrentTile.argtypes = [TIFF]
libtiff.TIFFCurrentDirectory.restype = c_tdir_t
libtiff.TIFFCurrentDirectory.argtypes = [TIFF]
libtiff.TIFFLastDirectory.restype = ctypes.c_int
libtiff.TIFFLastDirectory.argtypes = [TIFF]
libtiff.TIFFReadDirectory.restype = ctypes.c_int
libtiff.TIFFReadDirectory.argtypes = [TIFF]
libtiff.TIFFWriteDirectory.restype = ctypes.c_int
libtiff.TIFFWriteDirectory.argtypes = [TIFF]
libtiff.TIFFSetDirectory.restype = ctypes.c_int
libtiff.TIFFSetDirectory.argtypes = [TIFF, c_tdir_t]
libtiff.TIFFFileno.restype = ctypes.c_int
libtiff.TIFFFileno.argtypes = [TIFF]
libtiff.TIFFGetMode.restype = ctypes.c_int
libtiff.TIFFGetMode.argtypes = [TIFF]
libtiff.TIFFIsTiled.restype = ctypes.c_int
libtiff.TIFFIsTiled.argtypes = [TIFF]
libtiff.TIFFIsByteSwapped.restype = ctypes.c_int
libtiff.TIFFIsByteSwapped.argtypes = [TIFF]
libtiff.TIFFIsUpSampled.restype = ctypes.c_int
libtiff.TIFFIsUpSampled.argtypes = [TIFF]
libtiff.TIFFIsMSB2LSB.restype = ctypes.c_int
libtiff.TIFFIsMSB2LSB.argtypes = [TIFF]
libtiff.TIFFGetField.restype = ctypes.c_int
libtiff.TIFFGetField.argtypes = [TIFF, c_ttag_t, ctypes.c_void_p]
libtiff.TIFFSetField.restype = ctypes.c_int
libtiff.TIFFSetField.argtypes = [TIFF, c_ttag_t, ctypes.c_void_p] # last item is reset in TIFF.SetField method
libtiff.TIFFNumberOfStrips.restype = c_tstrip_t
libtiff.TIFFNumberOfStrips.argtypes = [TIFF]
libtiff.TIFFReadRawStrip.restype = c_tsize_t
libtiff.TIFFReadRawStrip.argtypes = [TIFF, c_tstrip_t, c_tdata_t, c_tsize_t]
libtiff.TIFFWriteRawStrip.restype = c_tsize_t
libtiff.TIFFWriteRawStrip.argtypes = [TIFF, c_tstrip_t, c_tdata_t, c_tsize_t]
libtiff.TIFFReadEncodedStrip.restype = c_tsize_t
libtiff.TIFFReadEncodedStrip.argtypes = [TIFF, c_tstrip_t, c_tdata_t, c_tsize_t]
libtiff.TIFFWriteEncodedStrip.restype = c_tsize_t
libtiff.TIFFWriteEncodedStrip.argtypes = [TIFF, c_tstrip_t, c_tdata_t, c_tsize_t]
libtiff.TIFFStripSize.restype = c_tsize_t
libtiff.TIFFStripSize.argtypes = [TIFF]
libtiff.TIFFRawStripSize.restype = c_tsize_t
libtiff.TIFFRawStripSize.argtypes = [TIFF, c_tstrip_t]
# For adding custom tags (must be void pointer otherwise callback seg faults
libtiff.TIFFMergeFieldInfo.restype = ctypes.c_int32
libtiff.TIFFMergeFieldInfo.argtypes = [ctypes.c_void_p, ctypes.c_void_p, ctypes.c_uint32]
# Tile Support
# TODO:
# TIFFTileRowSize64
# TIFFTileSize64
# TIFFVTileSize
# TIFFVTileSize64
libtiff.TIFFTileRowSize.restype = c_tsize_t
libtiff.TIFFTileRowSize.argtypes = [TIFF]
libtiff.TIFFTileSize.restype = c_tsize_t
libtiff.TIFFTileSize.argtypes = [TIFF]
libtiff.TIFFComputeTile.restype = c_ttile_t
libtiff.TIFFComputeTile.argtypes = [TIFF, ctypes.c_uint32, ctypes.c_uint32, ctypes.c_uint32, c_tsample_t]
libtiff.TIFFCheckTile.restype = ctypes.c_int
libtiff.TIFFCheckTile.argtypes = [TIFF, ctypes.c_uint32, ctypes.c_uint32, ctypes.c_uint32, c_tsample_t]
libtiff.TIFFNumberOfTiles.restype = c_ttile_t
libtiff.TIFFNumberOfTiles.argtypes = [TIFF]
libtiff.TIFFReadTile.restype = c_tsize_t
libtiff.TIFFReadTile.argtypes = [TIFF, c_tdata_t, ctypes.c_uint32, ctypes.c_uint32, ctypes.c_uint32, c_tsample_t]
libtiff.TIFFWriteTile.restype = c_tsize_t
libtiff.TIFFWriteTile.argtypes = [TIFF, c_tdata_t, ctypes.c_uint32, ctypes.c_uint32, ctypes.c_uint32, c_tsample_t]
libtiff.TIFFReadEncodedTile.restype = ctypes.c_int
libtiff.TIFFReadEncodedTile.argtypes = [TIFF, ctypes.c_ulong, ctypes.c_char_p, ctypes.c_ulong]
libtiff.TIFFReadRawTile.restype = c_tsize_t
libtiff.TIFFReadRawTile.argtypes = [TIFF, c_ttile_t, c_tdata_t, c_tsize_t]
libtiff.TIFFReadRGBATile.restype = ctypes.c_int
libtiff.TIFFReadRGBATile.argtypes = [TIFF, ctypes.c_uint32, ctypes.c_uint32, ctypes.POINTER(ctypes.c_uint32)]
libtiff.TIFFWriteEncodedTile.restype = c_tsize_t
libtiff.TIFFWriteEncodedTile.argtypes = [TIFF, c_ttile_t, c_tdata_t, c_tsize_t]
libtiff.TIFFWriteRawTile.restype = c_tsize_t
libtiff.TIFFWriteRawTile.argtypes = [TIFF, c_ttile_t, c_tdata_t, c_tsize_t]
libtiff.TIFFDefaultTileSize.restype = None
libtiff.TIFFDefaultTileSize.argtypes = [TIFF, ctypes.c_uint32, ctypes.c_uint32]
libtiff.TIFFClose.restype = None
libtiff.TIFFClose.argtypes = [TIFF]
# Support for TIFF warning and error handlers:
TIFFWarningHandler = ctypes.CFUNCTYPE(None,
ctypes.c_char_p, # Module
ctypes.c_char_p, # Format
ctypes.c_void_p) # va_list
TIFFErrorHandler = ctypes.CFUNCTYPE(None,
ctypes.c_char_p, # Module
ctypes.c_char_p, # Format
ctypes.c_void_p) # va_list
# This has to be at module scope so it is not garbage-collected
_null_warning_handler = TIFFWarningHandler(lambda module, fmt, va_list: None)
_null_error_handler = TIFFErrorHandler(lambda module, fmt, va_list: None)
def suppress_warnings():
libtiff.TIFFSetWarningHandler(_null_warning_handler)
def suppress_errors():
libtiff.TIFFSetErrorHandler(_null_error_handler)
def _test_custom_tags():
def _tag_write():
a = TIFF.open("/tmp/libtiff_test_custom_tags.tif", "w")
a.SetField("ARTIST", "MY NAME")
a.SetField("LibtiffTestByte", 42)
a.SetField("LibtiffTeststr", "FAKE")
a.SetField("LibtiffTestuint16", 42)
a.SetField("LibtiffTestMultiuint32", (1,2,3,4,5,6,7,8,9,10))
a.SetField("XPOSITION", 42.0)
a.SetField("PRIMARYCHROMATICITIES", (1.0, 2, 3, 4, 5, 6))
arr = numpy.ones((512,512), dtype=numpy.uint8)
arr[:,:] = 255
a.write_image(arr)
print "Tag Write: SUCCESS"
def _tag_read():
a = TIFF.open("/tmp/libtiff_test_custom_tags.tif", "r")
tmp = a.read_image()
assert tmp.shape==(512,512),"Image read was wrong shape (%r instead of (512,512))" % (tmp.shape,)
tmp = a.GetField("XPOSITION")
assert tmp == 42.0,"XPosition was not read as 42.0"
tmp = a.GetField("ARTIST")
assert tmp=="MY NAME","Artist was not read as 'MY NAME'"
tmp = a.GetField("LibtiffTestByte")
assert tmp==42,"LibtiffTestbyte was not read as 42"
tmp = a.GetField("LibtiffTestuint16")
assert tmp==42,"LibtiffTestuint16 was not read as 42"
tmp = a.GetField("LibtiffTestMultiuint32")
assert tmp==[1,2,3,4,5,6,7,8,9,10],"LibtiffTestMultiuint32 was not read as [1,2,3,4,5,6,7,8,9,10]"
tmp = a.GetField("LibtiffTeststr")
assert tmp=="FAKE","LibtiffTeststr was not read as 'FAKE'"
tmp = a.GetField("PRIMARYCHROMATICITIES")
assert tmp==[1.0,2.0,3.0,4.0,5.0,6.0],"PrimaryChromaticities was not read as [1.0,2.0,3.0,4.0,5.0,6.0]"
print "Tag Read: SUCCESS"
# Define a C structure that says how each tag should be used
test_tags = [
TIFFFieldInfo(40100, 1, 1, TIFFDataType.TIFF_BYTE, FIELD_CUSTOM, True, False, "LibtiffTestByte"),
TIFFFieldInfo(40103, 10, 10, TIFFDataType.TIFF_LONG, FIELD_CUSTOM, True, False, "LibtiffTestMultiuint32"),
TIFFFieldInfo(40102, 1, 1, TIFFDataType.TIFF_SHORT, FIELD_CUSTOM, True, False, "LibtiffTestuint16"),
TIFFFieldInfo(40101, -1, -1, TIFFDataType.TIFF_ASCII, FIELD_CUSTOM, True, False, "LibtiffTeststr")
]
# Add tags to the libtiff library
test_extender = add_tags(test_tags) # Keep pointer to extender object, no gc
_tag_write()
_tag_read()
def _test_tile_write():
a = TIFF.open("/tmp/libtiff_test_tile_write.tiff", "w")
assert a.SetField("ImageWidth", 3000)==1,"could not set ImageWidth tag"
assert a.SetField("ImageLength", 2500),"could not set ImageLength tag"
# Must be multiples of 16
assert a.SetField("TileWidth", 512),"could not set TileWidth tag"
assert a.SetField("TileLength", 528),"could not set TileLength tag"
assert a.SetField("BitsPerSample", 8),"could not set BitsPerSample tag"
assert a.SetField("Compression", COMPRESSION_NONE)
data_array = np.tile(range(500), (2500,6)).astype(np.uint8)
# Number of bytes written
assert a.write_tiles(data_array)==(512*528) * 5 * 6,"could not write tile images"
print "Tile Write: Wrote array of shape %r" % (data_array.shape,)
print "Tile Write: SUCCESS"
def _test_tile_read(filename=None):
import sys
if filename is None:
if len(sys.argv) != 2:
print "Run `libtiff.py <filename>` for testing."
return
a = TIFF.open(filename, "r")
iwidth = tmp = a.GetField("ImageWidth")
assert tmp is not None,"ImageWidth tag must be defined for reading tiles"
ilength = tmp = a.GetField("ImageLength")
assert tmp is not None,"ImageLength tag must be defined for reading tiles"
tmp = a.GetField("TileWidth")
assert tmp is not None,"TileWidth tag must be defined for reading tiles"
tmp = a.GetField("TileLength")
assert tmp is not None,"TileLength tag must be defined for reading tiles"
data_array = a.read_tiles()
print "Tile Read: Read array of shape %r" % (data_array.shape,)
assert data_array.shape==(ilength,iwidth),"tile data read was the wrong shape"
if iwidth == 3000 and ilength == 2500:
# The test file was created by _test_tile_write
test_array = np.tile(range(500), (2500,6)).astype(np.uint8).flatten()
assert np.nonzero(data_array.flatten() != test_array)[0].shape[0] == 0,"tile data read was not the same as the expected data"
print "Tile Read: Data is the same as expected from tile write test"
print "Tile Read: SUCCESS"
def _test_read(filename=None):
import sys
import time
if filename is None:
if len(sys.argv) != 2:
print 'Run `libtiff.py <filename>` for testing.'
return
filename = sys.argv[1]
print 'Trying to open', filename, '...',
tiff = TIFF.open(filename)
print 'ok'
print 'Trying to show info ...\n','-'*10
print tiff.info()
print '-'*10,'ok'
print 'Trying show images ...'
t = time.time ()
i = 0
for image in tiff.iter_images(verbose=True):
#print image.min(), image.max(), image.mean ()
i += 1
print '\tok',(time.time ()-t)*1e3,'ms',i,'images'
def _test_write():
tiff = TIFF.open('/tmp/libtiff_test_write.tiff', mode='w')
arr = np.zeros ((5,6), np.uint32)
for i in range(arr.shape[0]):
for j in range (arr.shape[1]):
arr[i,j] = i + 10*j
print arr
tiff.write_image(arr)
del tiff
def _test_write_float():
tiff = TIFF.open('/tmp/libtiff_test_write.tiff', mode='w')
arr = np.zeros ((5,6), np.float64)
for i in range(arr.shape[0]):
for j in range (arr.shape[1]):
arr[i,j] = i + 10*j
print arr
tiff.write_image(arr)
del tiff
tiff = TIFF.open('/tmp/libtiff_test_write.tiff', mode='r')
print tiff.info()
arr2 = tiff.read_image()
print arr2
def _test_copy():
tiff = TIFF.open('/tmp/libtiff_test_compression.tiff', mode='w')
arr = np.zeros ((5,6), np.uint32)
for i in range(arr.shape[0]):
for j in range (arr.shape[1]):
arr[i,j] = 1+i + 10*j
#from scipy.stats import poisson
#arr = poisson.rvs (arr)
tiff.SetField('ImageDescription', 'Hey\nyou')
tiff.write_image(arr, compression='lzw')
del tiff
tiff = TIFF.open('/tmp/libtiff_test_compression.tiff', mode='r')
print tiff.info()
arr2 = tiff.read_image()
assert (arr==arr2).all(),'arrays not equal'
for compression in ['none','lzw','deflate']:
for sampleformat in ['int','uint','float']:
for bitspersample in [256,128,64,32,16,8]:
if sampleformat=='float' and (bitspersample < 32 or bitspersample > 128):
continue
if sampleformat in ['int','uint'] and bitspersample > 64:
continue
#print compression, sampleformat, bitspersample
tiff.copy ('/tmp/libtiff_test_copy2.tiff',
compression=compression,
imagedescription='hoo',
sampleformat=sampleformat,
bitspersample=bitspersample)
tiff2 = TIFF.open('/tmp/libtiff_test_copy2.tiff', mode='r')
arr3 = tiff2.read_image()
assert (arr==arr3).all(),'arrays not equal %r' % ((compression, sampleformat, bitspersample),)
print 'test copy ok'
if __name__=='__main__':
#_test_custom_tags()
_test_tile_write()
_test_tile_read("/tmp/libtiff_test_tile_write.tiff")
#_test_write_float()
#_test_write()
#_test_read()
#_test_copy()
|