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