-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlibspng.lua
More file actions
427 lines (376 loc) · 12.6 KB
/
libspng.lua
File metadata and controls
427 lines (376 loc) · 12.6 KB
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
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
--libspng LuaJIT binding.
--Written by Cosmin Apreutesei. Public Domain.
if not ... then require'libspng_demo'; return end
local bit = require'bit'
local ffi = require'ffi'
require'libspng_h'
local C = ffi.load'spng'
--given a row stride, return the next larger stride that is a multiple of 4.
local function pad_stride(stride)
return bit.band(stride + 3, bit.bnot(3))
end
local spng = {version = ffi.string(C.spng_version_string())}
local formats = { --bpc:
[C.SPNG_COLOR_TYPE_GRAYSCALE ] = 'g' , --1,2,4,8,16
[C.SPNG_COLOR_TYPE_TRUECOLOR ] = 'rgb' , --8,16
[C.SPNG_COLOR_TYPE_INDEXED ] = 'i' , --8 (with 1,2,4,8 indexes)
[C.SPNG_COLOR_TYPE_GRAYSCALE_ALPHA] = 'ga' , --8,16
[C.SPNG_COLOR_TYPE_TRUECOLOR_ALPHA] = 'rgba', --8,16
}
--all conversions that libspng implements, in order of preference,
--with or without gamma conversion: {source = {dest1, ...}}.
local rgb8 = {'rgba8', 'bgra8', 'rgb8', 'rgba16'}
local rgba8 = {'rgba8', 'bgra8', 'rgba16', 'rgb8'}
local rgb16 = {'rgba16', 'rgba8', 'bgra8', 'rgb8'}
local rgba16 = {'rgba16', 'rgba8', 'bgra8', 'rgb8'}
local g8 = {'ga8', 'rgba8', 'bgra8', 'rgba16', 'g8', 'rgb8'}
local ga8 = {'ga8', 'rgba8', 'bgra8', 'rgba16', 'g8', 'rgb8'}
local g16 = {'ga16', 'rgba16', 'rgba8', 'bgra8', 'rgb8'}
local ga16 = {'ga16', 'rgba16', 'rgba8', 'bgra8', 'rgb8'}
local conversions = {
g1 = g8,
g2 = g8,
g4 = g8,
g8 = g8,
g16 = g16,
ga8 = ga8,
ga16 = ga16,
rgb8 = rgb8,
rgba8 = rgba8,
rgb16 = rgb16,
rgba16 = rgba16,
i1 = rgb8,
i2 = rgb8,
i4 = rgb8,
i8 = rgb8,
}
local dest_formats_no_gamma = {
rgba8 = C.SPNG_FMT_RGBA8,
bgra8 = C.SPNG_FMT_RGBA8,
rgba16 = C.SPNG_FMT_RGBA16,
rgb8 = C.SPNG_FMT_RGB8,
g8 = C.SPNG_FMT_G8,
ga16 = C.SPNG_FMT_GA16,
ga8 = C.SPNG_FMT_GA8,
}
local dest_formats_gamma = {
rgba8 = C.SPNG_FMT_RGBA8,
bgra8 = C.SPNG_FMT_RGBA8,
rgba16 = C.SPNG_FMT_RGBA16,
rgb8 = C.SPNG_FMT_RGB8,
}
local function best_fmt(raw_fmt, accept, gamma)
local dest_formats = gamma and dest_formats_gamma or dest_formats_no_gamma
if accept and conversions[raw_fmt] then --source format convertible
for _,bmp_fmt in ipairs(conversions[raw_fmt]) do
if accept[bmp_fmt] then --found a dest format
local spng_fmt = dest_formats[bmp_fmt]
if spng_fmt then --dest format is available
return bmp_fmt, spng_fmt
end
end
end
end
return raw_fmt, C.SPNG_FMT_PNG
end
local function struct_getter(ct, get) --getter for a struct type
local ct = ffi.typeof(ct)
return function(ctx)
local s = ct()
return get(ctx, s) == 0 and s or nil
end
end
local function prim_getter(ct, get) --getter for a primitive type
local ct = ffi.typeof(ct)
return function(ctx)
local s = ct()
return get(ctx, s) == 0 and s[0] or nil
end
end
local function list_getter(ct, get) --getter for a list of structs
local ct = ffi.typeof(ct)
return function(ctx)
local n = ffi.new'uint32_t[1]'
if get(ctx, nil, n) ~= 0 then return nil end
n = n[0]
local s = ct(n)
if get(ctx, s, n) ~= 0 then return nil end
return s, n
end
end
local chunk_decoders = {
ihdr = struct_getter('struct spng_ihdr' , C.spng_get_ihdr),
plte = struct_getter('struct spng_plte' , C.spng_get_plte),
trns = struct_getter('struct spng_trns' , C.spng_get_trns),
chrm = struct_getter('struct spng_chrm' , C.spng_get_chrm),
chrm_int = struct_getter('struct spng_chrm_int', C.spng_get_chrm_int),
gama = prim_getter('double[1]' , C.spng_get_gama),
gama_int = prim_getter('uint32_t[1]' , C.spng_get_gama_int),
iccp = struct_getter('struct spng_iccp' , C.spng_get_iccp),
sbit = struct_getter('struct spng_sbit' , C.spng_get_sbit),
srgb = prim_getter('uint8_t[1]' , C.spng_get_srgb),
bkgd = struct_getter('struct spng_bkgd' , C.spng_get_bkgd),
hist = struct_getter('struct spng_hist' , C.spng_get_hist),
phys = struct_getter('struct spng_phys' , C.spng_get_phys),
time = struct_getter('struct spng_time' , C.spng_get_time),
text = list_getter('struct spng_text[?]' , C.spng_get_text),
splt = list_getter('struct spng_splt[?]' , C.spng_get_splt),
offs = struct_getter('struct spng_offs' , C.spng_get_offs),
exif = struct_getter('struct spng_exif' , C.spng_get_exif),
unknown = list_getter('struct spng_unknown_chunk', C.spng_get_unknown_chunks),
}
local u8a = ffi.typeof'uint8_t[?]'
local u8p = ffi.typeof'uint8_t*'
local rw_fn_ct = ffi.typeof'spng_rw_fn*'
--^^ very important to typeof this to avoid "table overflow" !
local premultiply_funcs = {
rgba8 = C.spng_premultiply_alpha_rgba8,
bgra8 = C.spng_premultiply_alpha_rgba8,
rgba16 = C.spng_premultiply_alpha_rgba16,
ga8 = C.spng_premultiply_alpha_ga8,
ga16 = C.spng_premultiply_alpha_ga16,
}
function spng.open(opt)
if type(opt) == 'function' then
opt = {read = opt}
end
local read = assert(opt.read, 'read expected')
local ctx = C.spng_ctx_new(0)
assert(ctx ~= nil)
local read_cb
local function free()
if read_cb then read_cb:free(); read_cb = nil end
if ctx then C.spng_ctx_free(ctx); ctx = nil end
end
local function check(ret)
if ret == 0 then return true end
free()
return nil, ffi.string(C.spng_strerror(ret))
end
local read_err
local function spng_read(ctx, _, buf, len)
len = tonumber(len)
::again::
local sz, err = read(buf, len)
if not sz then read_err = err; return -2 end --SPNG_IO_ERROR
if sz == 0 then return -1 end -- SPNG_IO_EOF
if sz < len then --partial read
len = len - sz
buf = buf + sz
goto again
end
return 0
end
--[[local]] read_cb = ffi.cast(rw_fn_ct, spng_read)
local ok, err = check(C.spng_set_png_stream(ctx, read_cb, nil))
if not ok then
return nil, err
end
local ok, err = check(C.spng_decode_chunks(ctx))
if not ok then
return nil, read_err or err
end
local img = {free = free}
function img:chunk(name)
local decode = chunk_decoders[name]
if not decode then
return nil, 'unknown chunk name '..name
end
return decode(ctx)
end
local ihdr = img:chunk'ihdr'
if not ihdr then
free()
return nil, 'invalid header'
end
img.w = ihdr.width
img.h = ihdr.height
local bpc = ihdr.bit_depth
img.format = formats[ihdr.color_type]..bpc
img.interlaced = ihdr.interlace_method ~= C.SPNG_INTERLACE_NONE or nil
img.indexed = ihdr.color_type == C.SPNG_COLOR_TYPE_INDEXED or nil
ihdr = nil
function img:load(opt)
local gamma = opt and opt.gamma
local accept = opt and opt.accept
local bmp_fmt, spng_fmt = best_fmt(img.format, accept, gamma)
local nb = ffi.new'size_t[1]'
local ok, err = check(C.spng_decoded_image_size(ctx, spng_fmt, nb))
if not ok then
return nil, err
end
local row_size = tonumber(nb[0]) / img.h
local bmp = {w = img.w, h = img.h, format = bmp_fmt}
bmp.stride = row_size
if opt and opt.accept and opt.accept.stride_aligned then
bmp.stride = pad_stride(bmp.stride)
end
bmp.size = bmp.stride * bmp.h
bmp.data = ffi.new(u8a, bmp.size)
local flags = bit.bor(
C.SPNG_DECODE_TRNS,
gamma and C.SPNG_DECODE_GAMMA or 0,
C.SPNG_DECODE_PROGRESSIVE
)
C.spng_decode_image(ctx, nil, 0, spng_fmt, flags)
local row_info = ffi.new'struct spng_row_info'
local bottom_up = opt and opt.accept and opt.accept.bottom_up
bmp.bottom_up = bottom_up
local row_sz = bmp.size / bmp.h
local function check_partial(ret)
if ret == 0 then return end
bmp.partial = true
bmp.read_error = read_err or select(2, check(ret))
return true
end
while true do
if check_partial(C.spng_get_row_info(ctx, row_info)) then break end
local i = row_info.row_num
if bottom_up then i = img.h - i - 1 end
local row = bmp.data + bmp.stride * i
local ret = C.spng_decode_row(ctx, row, row_size)
if ret == 75 then break end --SPNG_EOI
if check_partial(ret) then break end
end
local premultiply_alpha =
(not opt or opt.premultiply_alpha ~= false)
and (img.format:find('a', 1, true) or img:chunk'trns')
and premultiply_funcs[bmp.format]
if premultiply_alpha then
premultiply_alpha(bmp.data, bmp.size)
end
if bmp.format == 'bgra8' then --cairo's native format.
C.spng_rgba8_to_bgra8(bmp.data, bmp.size)
end
return bmp
end
jit.off(img.load) --calls back into Lua through a ffi call.
return img
end
jit.off(spng.open) --calls back into Lua through a ffi call.
local function struct_setter(ct, set) --setter for a struct type
local ct = ffi.typeof(ct)
return function(ctx, v)
local s = ct(v)
return set(ctx, s) == 0
end
end
local function prim_setter(ct, set) --setter for a primitive type
local ct = ffi.typeof(ct)
return function(ctx, v)
local s = ct(v)
return set(ctx, s) == 0
end
end
local function list_setter(ct, set) --setter for a list of structs
local ct = ffi.typeof(ct)
return function(ctx, v)
local t = ct(#v, v)
return set(ctx, t, #v) == 0
end
end
local chunk_encoders = {
ihdr = struct_setter('struct spng_ihdr' , C.spng_set_ihdr),
plte = struct_setter('struct spng_plte' , C.spng_set_plte),
trns = struct_setter('struct spng_trns' , C.spng_set_trns),
chrm = struct_setter('struct spng_chrm' , C.spng_set_chrm),
chrm_int = struct_setter('struct spng_chrm_int', C.spng_set_chrm_int),
gama = prim_setter('double[1]' , C.spng_set_gama),
gama_int = prim_setter('uint32_t[1]' , C.spng_set_gama_int),
iccp = struct_setter('struct spng_iccp' , C.spng_set_iccp),
sbit = struct_setter('struct spng_sbit' , C.spng_set_sbit),
srgb = prim_setter('uint8_t[1]' , C.spng_set_srgb),
bkgd = struct_setter('struct spng_bkgd' , C.spng_set_bkgd),
hist = struct_setter('struct spng_hist' , C.spng_set_hist),
phys = struct_setter('struct spng_phys' , C.spng_set_phys),
time = struct_setter('struct spng_time' , C.spng_set_time),
text = list_setter('struct spng_text[?]' , C.spng_set_text),
splt = list_setter('struct spng_splt[?]' , C.spng_set_splt),
offs = struct_setter('struct spng_offs' , C.spng_set_offs),
exif = struct_setter('struct spng_exif' , C.spng_set_exif),
unknown = list_setter('struct spng_unknown_chunk', C.spng_set_unknown_chunks),
}
local color_types = {
g1 = C.SPNG_COLOR_TYPE_GRAYSCALE,
g2 = C.SPNG_COLOR_TYPE_GRAYSCALE,
g4 = C.SPNG_COLOR_TYPE_GRAYSCALE,
g8 = C.SPNG_COLOR_TYPE_GRAYSCALE,
g16 = C.SPNG_COLOR_TYPE_GRAYSCALE,
ga8 = C.SPNG_COLOR_TYPE_GRAYSCALE_ALPHA,
ga16 = C.SPNG_COLOR_TYPE_GRAYSCALE_ALPHA,
rgb8 = C.SPNG_COLOR_TYPE_TRUECOLOR,
rgba8 = C.SPNG_COLOR_TYPE_TRUECOLOR_ALPHA,
bgra8 = C.SPNG_COLOR_TYPE_TRUECOLOR_ALPHA,
rgba16 = C.SPNG_COLOR_TYPE_TRUECOLOR_ALPHA,
i1 = C.SPNG_COLOR_TYPE_INDEXED,
i2 = C.SPNG_COLOR_TYPE_INDEXED,
i4 = C.SPNG_COLOR_TYPE_INDEXED,
i8 = C.SPNG_COLOR_TYPE_INDEXED,
}
function spng.save(opt)
local bmp = assert(opt and opt.bitmap, 'bitmap expected')
local write = assert(opt and opt.write, 'write expected')
if bmp.bottom_up then
return nil, 'bottom-up bitmap NYI'
end
local ctx = C.spng_ctx_new(C.SPNG_CTX_ENCODER)
assert(ctx ~= nil)
local write_cb
local function free()
if write_cb then write_cb:free(); write_cb = nil end
if ctx then C.spng_ctx_free(ctx); ctx = nil end
end
local function check(ret)
if ret == 0 then return true end
free()
return nil, ffi.string(C.spng_strerror(ret))
end
local write_err
local function spng_write(ctx, _, buf, len)
len = tonumber(len)
local ok, err = write(buf, len)
if not ok then write_err = err; return -2 end --SPNG_IO_ERROR
return 0
end
--[[local]] write_cb = ffi.cast(rw_fn_ct, spng_write)
local ok, err = check(C.spng_set_png_stream(ctx, write_cb, nil))
if not ok then
return nil, err
end
local color_type = color_types[bmp.format]
local bpc = tonumber(bmp.format:match'%d+$')
if not color_type or not bpc then
return nil, 'invalid format '..bmp.format
end
assert(chunk_encoders.ihdr(ctx, {
width = bmp.w,
height = bmp.h,
bit_depth = bpc,
color_type = color_type,
compression_method = 0,
filter_method = 0,
interlace_method = 0,
}))
if opt.chunks then
for name, v in pairs(opt.chunks) do
local encode = assert(chunk_encoders[name], 'unknown chunk '..name)
assert(encode(ctx, v), 'invalid chunk '..name)
end
end
local data = bmp.data
if bmp.format == 'bgra8' then
data = ffi.new(u8a, bmp.size)
ffi.copy(data, bmp.data, bmp.size)
C.spng_rgba8_to_bgra8(data, bmp.size)
end
local fmt = C.SPNG_FMT_PNG
local flags = C.SPNG_ENCODE_FINALIZE
local ok, err = check(C.spng_encode_image(ctx, data, bmp.size, fmt, flags))
if not ok then
return nil, write_err or err
end
free()
return true
end
jit.off(spng.save) --calls back into Lua through a ffi call.
return spng