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