1menuconfig BR2_PACKAGE_TIFF 2 bool "tiff" 3 help 4 Library for handling TIFF (Tag Image File Format) images. 5 6 http://simplesystems.org/libtiff/ 7 8if BR2_PACKAGE_TIFF 9 10config BR2_PACKAGE_TIFF_CCITT 11 bool "CCITT Group 3 & 4 support" 12 default y 13 14config BR2_PACKAGE_TIFF_PACKBITS 15 bool "Macintosh PackBits algorithm" 16 default y 17 18config BR2_PACKAGE_TIFF_LZW 19 bool "LZW algorithm" 20 default y 21 22config BR2_PACKAGE_TIFF_THUNDER 23 bool "ThunderScan 4-bit RLE algorithm" 24 default y 25 26config BR2_PACKAGE_TIFF_NEXT 27 bool "NeXT 2-bit RLE algorithm" 28 default y 29 30config BR2_PACKAGE_TIFF_LOGLUV 31 bool "LogLuv high dynamic range encoding" 32 default y 33 34config BR2_PACKAGE_TIFF_MDI 35 bool "Microsoft Document Imaging" 36 default y 37 38config BR2_PACKAGE_TIFF_ZLIB 39 bool "Zlib usage (required for Deflate compression)" 40 default y 41 select BR2_PACKAGE_ZLIB 42 43config BR2_PACKAGE_TIFF_XZ 44 bool "XZ compression" 45 select BR2_PACKAGE_XZ 46 47config BR2_PACKAGE_TIFF_PIXARLOG 48 bool "Pixar log-format algorithm (requires Zlib)" 49 default y 50 select BR2_PACKAGE_TIFF_ZLIB 51 52config BR2_PACKAGE_TIFF_JPEG 53 bool "JPEG compression" 54 default y 55 select BR2_PACKAGE_JPEG 56 57config BR2_PACKAGE_TIFF_OLD_JPEG 58 bool "Old JPEG decompression" 59 default y 60 61config BR2_PACKAGE_TIFF_JBIG 62 bool "JBIG compression" 63 default y 64 65config BR2_PACKAGE_TIFF_UTILITIES 66 bool "tiff utilities" 67 help 68 Install all tiff utilities. 69 70endif 71