mirror of
https://github.com/Anon-Planet/thgtoa.git
synced 2025-12-19 06:18:18 +01:00
8 lines
168 B
Lua
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
|