1menuconfig 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 11 https://libgd.github.io/ 12 13if BR2_PACKAGE_GD 14 15config BR2_PACKAGE_GD_ANNOTATE 16 bool "annotate" 17 18config BR2_PACKAGE_GD_BDFTOGD 19 bool "bdftogd" 20 depends on BR2_PACKAGE_PERL 21 22config BR2_PACKAGE_GD_GD2COPYPAL 23 bool "gd2copypal" 24 25config BR2_PACKAGE_GD_GD2TOGIF 26 bool "gd2togif" 27 28config BR2_PACKAGE_GD_GD2TOPNG 29 bool "gd2topng" 30 select BR2_PACKAGE_LIBPNG 31 32config BR2_PACKAGE_GD_GDCMPGIF 33 bool "gdcmpgif" 34 35config BR2_PACKAGE_GD_GDPARTTOPNG 36 bool "gdparttopng" 37 select BR2_PACKAGE_LIBPNG 38 39config BR2_PACKAGE_GD_GDTOPNG 40 bool "gdtopng" 41 select BR2_PACKAGE_LIBPNG 42 43config BR2_PACKAGE_GD_GIFTOGD2 44 bool "giftogd2" 45 46config BR2_PACKAGE_GD_PNGTOGD 47 bool "pngtogd" 48 select BR2_PACKAGE_LIBPNG 49 50config BR2_PACKAGE_GD_PNGTOGD2 51 bool "pngtogd2" 52 select BR2_PACKAGE_LIBPNG 53 54config BR2_PACKAGE_GD_WEBPNG 55 bool "webpng" 56 select BR2_PACKAGE_LIBPNG 57 58endif 59