thgtoa/imagesize.lua
Alex Anderson 100b5f195b
Signed recent changes
and disabled PDF builds
2022-07-23 22:42:06 +00:00

8 lines
168 B
Lua

function Image (img)
-- get dimensions
local width, height = nil, nil -- implement
img.attributes.width = width
img.attributes.height = height
return img
end