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

27 lines
548 B
Lua
Raw Normal View History

2013-10-17 21:34:55 +00:00
PicDocument = Document:new{
_document = false,
dc_null = DrawContext.new(),
}
function PicDocument:init()
ok, self._document = pcall(pic.openDocument, self.file)
if not ok then
self.error_message = "failed to open jpeg image"
return
end
self.info.has_pages = true
self.info.configurable = false
self:readMetadata()
end
function PicDocument:readMetadata()
self.info.number_of_pages = 1
end
DocumentRegistry:addProvider("jpeg", "application/jpeg", PicDocument)
DocumentRegistry:addProvider("jpg", "application/jpeg", PicDocument)