Commit | Line | Data |
---|---|---|
02d1d628 AMH |
1 | Changes |
2 | Imager.pm | |
3 | Imager.xs | |
4 | MANIFEST | |
5 | README | |
6 | Makefile.PL | |
efdc2568 | 7 | bmp.c Reading and writing Windows BMP files |
6607600c | 8 | color.c Color translation and handling |
02d1d628 | 9 | conv.c |
f5991c03 | 10 | convert.c |
d08b8f85 TC |
11 | draw.c |
12 | draw.h | |
f1ac5027 | 13 | fills.c Generic fills |
2df3535a | 14 | map.c |
64549713 | 15 | error.c |
02d1d628 AMH |
16 | gaussian.c |
17 | ppport.h | |
18 | image.c | |
19 | image.h | |
faa9b3e7 | 20 | imagei.h |
02d1d628 AMH |
21 | datatypes.h |
22 | datatypes.c | |
23 | feat.h | |
faa9b3e7 | 24 | img16.c |
02d1d628 AMH |
25 | io.c |
26 | io.h | |
27 | log.c | |
28 | log.h | |
29 | jpeg.c | |
30 | png.c | |
31 | gif.c | |
32 | tiff.c | |
33 | quant.c | |
34 | raw.c | |
35 | pnm.c | |
36 | filters.c | |
37 | feat.c | |
38 | font.c | |
faa9b3e7 TC |
39 | freetyp2.c Implements freetype2 font support |
40 | maskimg.c | |
41 | palimg.c | |
02d1d628 AMH |
42 | regmach.c |
43 | regmach.h | |
faa9b3e7 | 44 | rotate.c |
02d1d628 AMH |
45 | stackmach.c |
46 | stackmach.h | |
faa9b3e7 | 47 | tags.c |
02d1d628 AMH |
48 | trans2.c |
49 | iolayer.h | |
50 | iolayer.c | |
51 | fontfiles/dcr10.afm | |
52 | fontfiles/dcr10.pfb | |
53 | fontfiles/dodge.ttf | |
faa9b3e7 TC |
54 | lib/Imager/Color.pm |
55 | lib/Imager/Color/Float.pm | |
02d1d628 AMH |
56 | lib/Imager/Expr.pm |
57 | lib/Imager/Expr/Assem.pm | |
efdc2568 | 58 | lib/Imager/Fill.pm |
02d1d628 | 59 | lib/Imager/Font.pm |
faa9b3e7 TC |
60 | lib/Imager/Font/Type1.pm |
61 | lib/Imager/Font/Truetype.pm | |
62 | lib/Imager/Font/FreeType2.pm | |
6607600c | 63 | lib/Imager/Fountain.pm |
faa9b3e7 TC |
64 | lib/Imager/interface.pod |
65 | lib/Imager/Matrix2d.pm | |
66 | lib/Imager/regmach.pod | |
67 | lib/Imager/Regops.pm | |
02d1d628 AMH |
68 | lib/Imager/Transform.pm |
69 | t/t00basic.t | |
faa9b3e7 TC |
70 | t/t01introvert.t |
71 | t/t020masked.t | |
72 | t/t021sixteen.t | |
64549713 | 73 | t/t05error.t |
23aab92a TC |
74 | t/t101jpeg.t |
75 | t/t102png.t | |
76 | t/t103raw.t | |
77 | t/t104ppm.t | |
78 | t/t105gif.t | |
79 | t/t106tiff.t | |
d08b8f85 | 80 | t/t107bmp.t |
02d1d628 | 81 | t/t15color.t |
efdc2568 | 82 | t/t20fill.t Tests fills |
02d1d628 AMH |
83 | t/t30t1font.t |
84 | t/t35ttfont.t | |
85 | t/t36oofont.t | |
faa9b3e7 TC |
86 | t/t37w32font.t Tests Win32 GDI font support |
87 | t/t38ft2font.t Tests freetype2 support | |
02d1d628 AMH |
88 | t/t40scale.t |
89 | t/t50basicoo.t | |
90 | t/t55trans.t | |
91 | t/t56postfix.t | |
92 | t/t57infix.t | |
93 | t/t58trans2.t | |
94 | t/t59assem.t | |
95 | t/t60dyntest.t | |
d08b8f85 | 96 | t/t61filters.t |
02d1d628 AMH |
97 | t/t65crop.t |
98 | t/t66paste.t | |
efdc2568 TC |
99 | t/t67convert.t |
100 | t/t68map.t | |
faa9b3e7 | 101 | t/t69rubthru.t |
02d1d628 AMH |
102 | t/t70newgif.t |
103 | t/t75polyaa.t | |
104 | t/t90cc.t | |
84324192 | 105 | testimg/bandw.gif |
6607600c TC |
106 | testimg/comp4.bmp Compressed 4-bit/pixel BMP |
107 | testimg/comp8.bmp Compressed 8-bit/pixel BMP | |
84324192 | 108 | testimg/expected.gif |
6607600c | 109 | testimg/gimpgrad A GIMP gradient file |
84324192 AMH |
110 | testimg/junk.ppm |
111 | testimg/loccmap.gif | |
112 | testimg/nocmap.gif | |
113 | testimg/palette.png | |
114 | testimg/palette_out.png | |
115 | testimg/penguin-base.ppm | |
02d1d628 | 116 | testimg/scale.gif |
84324192 | 117 | testimg/scale.ppm |
02d1d628 | 118 | testimg/scalei.gif |
84324192 | 119 | testimg/screen2.gif |
faa9b3e7 | 120 | testimg/screen3.gif |
6607600c | 121 | testimg/test_gimp_pal A simple GIMP palette file |
84324192 AMH |
122 | testimg/trimgdesc.gif |
123 | testimg/trmiddesc.gif | |
02d1d628 AMH |
124 | typemap |
125 | dynaload.c | |
126 | dynaload.h | |
127 | ext.h | |
128 | plug.h | |
129 | filterlist.perl | |
130 | doco.perl | |
131 | errep.perl | |
132 | regops.perl | |
133 | spot.perl For making an ordered dither matrix from a spot function | |
02d1d628 AMH |
134 | transform.perl Shell interface to Imager::Transform |
135 | bigtest.perl Library selection tester | |
136 | dynfilt/pluginst.h | |
137 | dynfilt/dyntest.c | |
138 | dynfilt/dt2.c | |
139 | dynfilt/mandelbrot.c | |
140 | dynfilt/flines.c | |
141 | dynfilt/compile.txt | |
142 | dynfilt/Makefile.PL | |
faa9b3e7 | 143 | win32.c Implements font support through Win32 GDI |