2013-10-22 17:19:08 +02:00
|
|
|
local Document = require("document/document")
|
2013-12-31 13:12:56 +08:00
|
|
|
local DrawContext = require("ffi/drawcontext")
|
2014-06-16 02:20:59 -04:00
|
|
|
local pic = nil
|
2013-10-17 17:34:55 -04:00
|
|
|
|
2013-10-22 17:19:08 +02:00
|
|
|
local PicDocument = Document:new{
|
2014-03-13 21:52:43 +08:00
|
|
|
_document = false,
|
2015-09-07 20:06:17 +03:00
|
|
|
is_pic = true,
|
2014-03-13 21:52:43 +08:00
|
|
|
dc_null = DrawContext.new()
|
2013-10-17 17:34:55 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function PicDocument:init()
|
2014-06-16 02:20:59 -04:00
|
|
|
if not pic then pic = require("ffi/pic") end
|
2016-02-14 13:47:36 -08:00
|
|
|
local ok
|
2014-03-13 21:52:43 +08:00
|
|
|
ok, self._document = pcall(pic.openDocument, self.file)
|
|
|
|
|
if not ok then
|
2014-08-29 17:17:08 +08:00
|
|
|
error("Failed to open jpeg image")
|
2014-03-13 21:52:43 +08:00
|
|
|
end
|
2013-10-17 17:34:55 -04:00
|
|
|
|
2014-03-13 21:52:43 +08:00
|
|
|
self.info.has_pages = true
|
|
|
|
|
self.info.configurable = false
|
2013-10-17 17:34:55 -04:00
|
|
|
|
2014-11-11 22:32:57 +01:00
|
|
|
self:_readMetadata()
|
2013-10-17 17:34:55 -04:00
|
|
|
end
|
|
|
|
|
|
2014-11-11 22:32:57 +01:00
|
|
|
function PicDocument:getUsedBBox(pageno)
|
|
|
|
|
return { x0 = 0, y0 = 0, x1 = self._document.width, y1 = self._document.height }
|
2013-10-17 17:34:55 -04:00
|
|
|
end
|
|
|
|
|
|
2013-10-22 17:19:08 +02:00
|
|
|
function PicDocument:register(registry)
|
2014-11-17 10:23:06 +01: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 17:19:08 +02:00
|
|
|
end
|
2013-10-17 17:34:55 -04:00
|
|
|
|
2013-10-22 17:19:08 +02:00
|
|
|
return PicDocument
|