2
0
mirror of https://github.com/koreader/koreader synced 2024-10-31 21:20:20 +00:00
koreader/frontend/document/picdocument.lua

59 lines
1.6 KiB
Lua
Raw Normal View History

local Document = require("document/document")
2013-12-31 05:12:56 +00:00
local DrawContext = require("ffi/drawcontext")
local CanvasContext = require("document/canvascontext")
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,
is_pic = true,
dc_null = DrawContext.new(),
provider = "picdocument",
provider_name = "Picture Document",
2013-10-17 21:34:55 +00:00
}
function PicDocument:init()
self:updateColorRendering()
if not pic then pic = require("ffi/pic") end
-- pic.color needs to be true before opening document to allow toggling color
pic.color = CanvasContext.is_color_rendering_enabled
local ok
2014-03-13 13:52:43 +00:00
ok, self._document = pcall(pic.openDocument, self.file)
if not ok then
error("Failed to open image:" .. self._document)
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:getProps()
local _, _, docname = self.file:find(".*/(.*)")
docname = docname or self.file
return {
title = docname:match("(.*)%."),
}
end
function PicDocument:getCoverPageImage()
local first_page = self._document:openPage(1)
if first_page.image_bb then
return first_page.image_bb:copy()
end
return nil
end
function PicDocument:register(registry)
registry:addProvider("gif", "image/gif", self, 100)
registry:addProvider("jpg", "image/jpeg", self, 100)
registry:addProvider("jpeg", "image/jpeg", self, 100)
registry:addProvider("png", "image/png", self, 100)
end
2013-10-17 21:34:55 +00:00
return PicDocument