Image lib convolution filter support

This commit is contained in:
IgorTimofeev
2021-07-16 19:21:22 +07:00
parent 2287ab1a08
commit 320489abe7
4 changed files with 99 additions and 47 deletions

View File

@@ -2924,10 +2924,18 @@ _G.print = function(...)
end
end
local args = {...}
local args, arg = {...}
for i = 1, #args do
args[i] = tostring(args[i])
arg = args[i]
if type(arg) == "table" then
arg = text.serialize(arg, true, " ", 3)
else
arg = tostring(arg)
end
args[i] = arg
end
args = table.concat(args, " ")