mirror of
https://github.com/Anon-Planet/thgtoa.git
synced 2025-03-01 11:11:31 -05: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
|