2
0
mirror of https://github.com/koreader/koreader synced 2024-11-10 01:10:34 +00:00
koreader/frontend/document/picdocument.lua

35 lines
909 B
Lua
Raw Normal View History

local Document = require("document/document")
2013-12-31 05:12:56 +00:00
local DrawContext = require("ffi/drawcontext")
local pic = nil
2013-10-17 21:34:55 +00:00
local PicDocument = Document:new{
2014-03-13 13:52:43 +00:00
_document = false,
dc_null = DrawContext.new()
2013-10-17 21:34:55 +00:00
}
function PicDocument:init()
if not pic then pic = require("ffi/pic") end
2014-03-13 13:52:43 +00:00
ok, self._document = pcall(pic.openDocument, self.file)
if not ok then
error("Failed to open jpeg image")
2014-03-13 13:52:43 +00:00
end
2013-10-17 21:34:55 +00:00
2014-03-13 13:52:43 +00:00
self.info.has_pages = true
self.info.configurable = false
2013-10-17 21:34:55 +00:00
self:_readMetadata()
2013-10-17 21:34:55 +00:00
end
function PicDocument:getUsedBBox(pageno)
return { x0 = 0, y0 = 0, x1 = self._document.width, y1 = self._document.height }
2013-10-17 21:34:55 +00:00
end
function PicDocument:register(registry)
registry:addProvider("jpeg", "image/jpeg", self)
registry:addProvider("jpg", "image/jpeg", self)
registry:addProvider("png", "image/png", self)
registry:addProvider("gif", "image/gif", self)
end
2013-10-17 21:34:55 +00:00
return PicDocument