Text char codes extraction

This commit is contained in:
notmasteryet 2011-12-10 17:24:54 -06:00
parent 853f16085f
commit 3b72c6063c
4 changed files with 152 additions and 13 deletions

View file

@ -309,6 +309,17 @@ var PDFView = {
}
else
this.page = 1;
setTimeout((function loadStartTextExtraction() {
this.startTextExtraction(pdf);
}).bind(this), 500);
},
startTextExtraction: function(pdf) {
pdf.textExtracted = function pdfTextExtracted(index) {
console.log(index.join());
};
pdf.extractText();
},
setHash: function pdfViewSetHash(hash) {