-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
gid-decoding_pnm.adb
254 lines (229 loc) · 6.78 KB
/
gid-decoding_pnm.adb
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
with GID.Buffering;
with Ada.Strings.Unbounded;
package body GID.Decoding_PNM is
use Ada.Strings.Unbounded, Buffering, Interfaces;
----------
-- Load --
----------
procedure Load (image : in out Image_Descriptor) is
procedure Row_start (y : Natural) is
begin
Set_X_Y (0, Integer (image.height) - 1 - y);
end Row_start;
type Pixel is record
color : RGB_Color_8_Bit;
alpha : U8;
end record;
pix : Pixel;
procedure Output_Pixel is
pragma Inline (Output_Pixel);
function Times_257 (x : Primary_Color_Range) return Primary_Color_Range
is
(16 * (16 * x) + x) with Inline; -- This is 257 * x, = 16#0101# * x
-- Numbers are 8-bit -> no OA warning at instantiation.
-- Returns x if type Primary_Color_Range is mod 2**8.
begin
case Primary_Color_Range'Modulus is
when 256 =>
Put_Pixel
(Primary_Color_Range (pix.color.red),
Primary_Color_Range (pix.color.green),
Primary_Color_Range (pix.color.blue),
Primary_Color_Range (pix.alpha));
when 65_536 =>
Put_Pixel
(Times_257 (Primary_Color_Range (pix.color.red)),
Times_257 (Primary_Color_Range (pix.color.green)),
Times_257 (Primary_Color_Range (pix.color.blue)),
Times_257 (Primary_Color_Range (pix.alpha)));
-- Times_257 makes max intensity FF go to FFFF
when others =>
raise invalid_primary_color_range
with "PNM: color range not supported";
end case;
end Output_Pixel;
----------
-- P1 --
----------
procedure Get_Mono_Text_Picture is
begin
for y in 0 .. Integer (image.height) - 1 loop
Row_start (y);
for x in 0 .. Integer (image.width) - 1 loop
pix.color.red := U8 ((1 - Get_Integer (image.stream, single_char => True)) * 255);
pix.color.green := pix.color.red;
pix.color.blue := pix.color.red;
Output_Pixel;
end loop;
Feedback (((y + 1) * 100) / Integer (image.height));
end loop;
end Get_Mono_Text_Picture;
----------
-- P2 --
----------
procedure Get_Grey_Text_Picture is
begin
for y in 0 .. Integer (image.height) - 1 loop
Row_start (y);
for x in 0 .. Integer (image.width) - 1 loop
pix.color.red := U8 (Get_Integer (image.stream));
pix.color.green := pix.color.red;
pix.color.blue := pix.color.red;
Output_Pixel;
end loop;
Feedback (((y + 1) * 100) / Integer (image.height));
end loop;
end Get_Grey_Text_Picture;
----------
-- P3 --
----------
procedure Get_RGB_Text_Picture is
begin
for y in 0 .. Integer (image.height) - 1 loop
Row_start (y);
for x in 0 .. Integer (image.width) - 1 loop
pix.color.red := U8 (Get_Integer (image.stream));
pix.color.green := U8 (Get_Integer (image.stream));
pix.color.blue := U8 (Get_Integer (image.stream));
Output_Pixel;
end loop;
Feedback (((y + 1) * 100) / Integer (image.height));
end loop;
end Get_RGB_Text_Picture;
----------
-- P4 --
----------
procedure Get_Mono_Binary_Picture is
bbf : U8; -- Bit buffer
begin
for y in 0 .. Integer (image.height) - 1 loop
Row_start (y);
for x in 0 .. Integer (image.width) - 1 loop
if x mod 8 = 0 then
Get_Byte (image.buffer, bbf);
end if;
pix.color.red := 255 * (1 - Shift_Right (bbf, 7));
bbf := bbf * 2;
pix.color.green := pix.color.red;
pix.color.blue := pix.color.red;
Output_Pixel;
end loop;
Feedback (((y + 1) * 100) / Integer (image.height));
end loop;
end Get_Mono_Binary_Picture;
----------
-- P5 --
----------
procedure Get_Grey_Binary_Picture is
begin
for y in 0 .. Integer (image.height) - 1 loop
Row_start (y);
for x in 0 .. Integer (image.width) - 1 loop
Get_Byte (image.buffer, pix.color.red);
pix.color.green := pix.color.red;
pix.color.blue := pix.color.red;
Output_Pixel;
end loop;
Feedback (((y + 1) * 100) / Integer (image.height));
end loop;
end Get_Grey_Binary_Picture;
----------
-- P6 --
----------
procedure Get_RGB_Binary_Picture is
begin
for y in 0 .. Integer (image.height) - 1 loop
Row_start (y);
for x in 0 .. Integer (image.width) - 1 loop
Get_Byte (image.buffer, pix.color.red);
Get_Byte (image.buffer, pix.color.green);
Get_Byte (image.buffer, pix.color.blue);
Output_Pixel;
end loop;
Feedback (((y + 1) * 100) / Integer (image.height));
end loop;
end Get_RGB_Binary_Picture;
begin
pix.alpha := 255; -- opaque is default
if image.subformat_id >= 4 then -- Binary
Attach_Stream (image.buffer, image.stream);
end if;
--
case image.subformat_id is
when 1 =>
Get_Mono_Text_Picture;
when 2 =>
Get_Grey_Text_Picture;
when 3 =>
Get_RGB_Text_Picture;
when 4 =>
Get_Mono_Binary_Picture;
when 5 =>
Get_Grey_Binary_Picture;
when 6 =>
Get_RGB_Binary_Picture;
when others => null;
end case;
end Load;
function Get_Token (
stream : Stream_Access;
needs_EOL : Boolean := False;
single_char : Boolean := False
)
return String
is
c : Character;
res : Unbounded_String;
procedure Skip_comment is
begin
if c = '#' then
loop
Character'Read (stream, c);
exit when c = ASCII.LF;
end loop;
end if;
end Skip_comment;
begin
loop
Character'Read (stream, c);
Skip_comment;
exit when c > ' ';
end loop;
loop
if c > ' ' then
res := res & c;
end if;
if single_char then
exit when Length (res) = 1;
end if;
Character'Read (stream, c);
Skip_comment;
if needs_EOL then
exit when c = ASCII.LF;
else
exit when c <= ' ';
end if;
end loop;
return To_String (res);
end Get_Token;
function Get_Integer (
stream : Stream_Access;
needs_EOL : Boolean := False;
single_char : Boolean := False
)
return Integer
is
begin
return Integer'Value (Get_Token (stream, needs_EOL, single_char));
end Get_Integer;
function Get_Positive_32 (
stream : Stream_Access;
needs_EOL : Boolean := False;
single_char : Boolean := False
)
return Positive_32
is
begin
return Positive_32'Value (Get_Token (stream, needs_EOL, single_char));
end Get_Positive_32;
end GID.Decoding_PNM;