export highlighted rect in scanned page to Evernote

This commit is contained in:
chrox
2014-05-15 16:10:45 +08:00
parent 71eda7a0ca
commit 55734f6aaa
7 changed files with 116 additions and 5 deletions

View File

@@ -96,6 +96,14 @@ function DjvuDocument:getUsedBBox(pageno)
return used
end
function DjvuDocument:clipPagePNGFile(pos0, pos1, pboxes, drawer, filename)
return self.koptinterface:clipPagePNGFile(self, pos0, pos1, pboxes, drawer, filename)
end
function DjvuDocument:clipPagePNGString(pos0, pos1, pboxes, drawer)
return self.koptinterface:clipPagePNGString(self, pos0, pos1, pboxes, drawer)
end
function DjvuDocument:getPageBBox(pageno)
return self.koptinterface:getPageBBox(self, pageno)
end