Signed recent changes

and disabled PDF builds
This commit is contained in:
Alex Anderson
2022-07-23 22:42:06 +00:00
parent 7c91c963cb
commit 100b5f195b
138 changed files with 419 additions and 1064 deletions

7
imagesize.lua Normal file
View File

@@ -0,0 +1,7 @@
function Image (img)
-- get dimensions
local width, height = nil, nil -- implement
img.attributes.width = width
img.attributes.height = height
return img
end