Jump to content

Module:Sandbox/Izno

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Izno (talk | contribs) at 21:00, 6 March 2021 (for show). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
(diff) ← Previous revision | Latest revision (diff) | Newer revision → (diff)

local p = {}

function main()
	
	local file = mw.title.makeTitle('File:Example.jpg')
	
	p.width = tostring(file.width)
	p.height = tostring(file.height)
	
	return p
	
end