1 /* 2 * Copyright 2007, Axel Dörfler, axeld@pinc-software.de. All rights reserved. 3 * Distributed under the terms of the MIT License. 4 */ 5 #ifndef TIFF_H 6 #define TIFF_H 7 8 9 #include <SupportDefs.h> 10 11 12 enum types { 13 TIFF_UINT16_TYPE = 3, 14 TIFF_UINT32_TYPE, 15 TIFF_UFRACTION_TYPE, 16 TIFF_INT16_TYPE = 8, 17 TIFF_INT32_TYPE, 18 TIFF_FRACTION_TYPE, 19 TIFF_FLOAT_TYPE, 20 TIFF_DOUBLE_TYPE, 21 }; 22 23 struct tiff_tag { 24 uint16 tag; 25 uint16 type; 26 uint32 length; 27 }; 28 29 #endif // TIFF_H 30