Module:ImageRatio

This is the current revision of this page, as edited by imported>Adam Cuerden at 10:59, 31 January 2024. The present address (URL) is a permanent link to this version.

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

local p={}
function p.ratio(frame)
	local file = frame.args[1]  and mw.title.new('File:' .. mw.uri.decode(mw.ustring.gsub(frame.args[1],'%|.*$',''), 'WIKI'))
	file = file and file.file
	local w = tonumber(file.width) or 1
	local h = tonumber(file.height) or 1
    local r = w/h or 1
	return r
end
return p