2013-10-22 15:19:08 +00:00
|
|
|
local Document = require("document/document")
|
2013-12-31 05:12:56 +00:00
|
|
|
local DrawContext = require("ffi/drawcontext")
|
2017-09-30 22:16:38 +00:00
|
|
|
local Screen = require("device").screen
|
2014-06-16 06:20:59 +00:00
|
|
|
local pic = nil
|
2013-10-17 21:34:55 +00:00
|
|
|
|
2013-10-22 15:19:08 +00:00
|
|
|
local PicDocument = Document:new{
|
2014-03-13 13:52:43 +00:00
|
|
|
_document = false,
|
2015-09-07 17:06:17 +00:00
|
|
|
is_pic = true,
|
2014-03-13 13:52:43 +00:00
|
|
|
dc_null = DrawContext.new()
|
2013-10-17 21:34:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function PicDocument:init()
|
2017-10-01 17:23:06 +00:00
|
|
|
self:updateColorRendering()
|
2014-06-16 06:20:59 +00:00
|
|
|
if not pic then pic = require("ffi/pic") end
|
2017-10-01 17:23:06 +00:00
|
|
|
-- pic.color needs to be true before opening document to allow toggling color
|
|
|
|
pic.color = Screen.isColorScreen()
|
2016-02-14 21:47:36 +00:00
|
|
|
local ok
|
2014-03-13 13:52:43 +00:00
|
|
|
ok, self._document = pcall(pic.openDocument, self.file)
|
|
|
|
if not ok then
|
2014-08-29 09:17:08 +00:00
|
|
|
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
|
|
|
|
2014-11-11 21:32:57 +00:00
|
|
|
self:_readMetadata()
|
2013-10-17 21:34:55 +00:00
|
|
|
end
|
|
|
|
|
2014-11-11 21:32:57 +00:00
|
|
|
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
|
|
|
|
|
2017-08-20 10:43:52 +00:00
|
|
|
function PicDocument:getProps()
|
|
|
|
local _, _, docname = self.file:find(".*/(.*)")
|
|
|
|
docname = docname or self.file
|
|
|
|
return {
|
|
|
|
title = docname:match("(.*)%."),
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
function PicDocument:getCoverPageImage()
|
|
|
|
local f = io.open(self.file, "rb")
|
|
|
|
if f then
|
|
|
|
local data = f:read("*all")
|
|
|
|
f:close()
|
|
|
|
local Mupdf = require("ffi/mupdf")
|
|
|
|
local ok, image = pcall(Mupdf.renderImage, data, data:len())
|
|
|
|
if ok then
|
|
|
|
return image
|
|
|
|
end
|
|
|
|
end
|
|
|
|
return nil
|
|
|
|
end
|
|
|
|
|
2013-10-22 15:19:08 +00:00
|
|
|
function PicDocument:register(registry)
|
2014-11-17 09:23:06 +00:00
|
|
|
registry:addProvider("jpeg", "image/jpeg", self)
|
|
|
|
registry:addProvider("jpg", "image/jpeg", self)
|
|
|
|
registry:addProvider("png", "image/png", self)
|
|
|
|
registry:addProvider("gif", "image/gif", self)
|
2013-10-22 15:19:08 +00:00
|
|
|
end
|
2013-10-17 21:34:55 +00:00
|
|
|
|
2013-10-22 15:19:08 +00:00
|
|
|
return PicDocument
|