Config.in 1.5 KB

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