Config.in 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. menuconfig BR2_PACKAGE_GD
  2. bool "gd"
  3. help
  4. GD is a graphics library. It allows your code to quickly
  5. draw images complete with lines, arcs, text, multiple
  6. colours, cut and paste from other images, flood fills, and
  7. write out the result as a PNG file. This is particularly
  8. useful in World Wide Web applications, where PNG is one of
  9. the formats accepted for inline images by most browsers.
  10. https://libgd.github.io/
  11. if BR2_PACKAGE_GD
  12. config BR2_PACKAGE_GD_ANNOTATE
  13. bool "annotate"
  14. config BR2_PACKAGE_GD_BDFTOGD
  15. bool "bdftogd"
  16. depends on BR2_PACKAGE_PERL
  17. config BR2_PACKAGE_GD_GD2COPYPAL
  18. bool "gd2copypal"
  19. config BR2_PACKAGE_GD_GD2TOGIF
  20. bool "gd2togif"
  21. config BR2_PACKAGE_GD_GD2TOPNG
  22. bool "gd2topng"
  23. select BR2_PACKAGE_LIBPNG
  24. config BR2_PACKAGE_GD_GDCMPGIF
  25. bool "gdcmpgif"
  26. config BR2_PACKAGE_GD_GDPARTTOPNG
  27. bool "gdparttopng"
  28. select BR2_PACKAGE_LIBPNG
  29. config BR2_PACKAGE_GD_GDTOPNG
  30. bool "gdtopng"
  31. select BR2_PACKAGE_LIBPNG
  32. config BR2_PACKAGE_GD_GIFTOGD2
  33. bool "giftogd2"
  34. config BR2_PACKAGE_GD_PNGTOGD
  35. bool "pngtogd"
  36. select BR2_PACKAGE_LIBPNG
  37. config BR2_PACKAGE_GD_PNGTOGD2
  38. bool "pngtogd2"
  39. select BR2_PACKAGE_LIBPNG
  40. config BR2_PACKAGE_GD_WEBPNG
  41. bool "webpng"
  42. select BR2_PACKAGE_LIBPNG
  43. endif