You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
local thumbnail = {}
|
|
|
|
thumbnail.setdb = function(db)
|
|
thumbnail.db = db
|
|
end
|
|
|
|
thumbnail.newfromvips = function(vipsimage)
|
|
local t = {}
|
|
|
|
t['type'] = 'thumbnail'
|
|
t.src = vipsimage:write_to_buffer('.png', {compression=9})
|
|
|
|
thumbnail.db:insertrecord(t)
|
|
return t
|
|
end
|
|
|
|
return thumbnail |