-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
57 lines (50 loc) · 1.54 KB
/
app.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
//declared imports
const express = require('express');
const app = express();
//File inputs
const fs = require("fs");
//allow to upload to server
const multer = require('multer');
//Used to analize the images
const {TesseractWorker } = require('tesseract.js');
const worker = new TesseractWorker();
//declared storage
const storage = multer.diskStorage({
destination: (req, file, cb) => {
cb(null, "./uploads");
},
filename: (req, file, cb) => {
cb(null, file.originalname);
}
});
const upload = multer({storage: storage}).single('avatar');
app.set('view engine', 'ejs');
app.use(express.static('public'));
app.get('/', (req, res) => {
res.render('index');
})
app.post('/upload', (req, res) => {
upload(req, res, err => {
fs.readFile(`./uploads/${req.file.originalname}`, (err, data) => {
if(err) return console.log('This is your error', err);
worker
.recognize(data, 'eng', {tessjs_create_pdf: '1'})
.progress(progress => {
console.log(progress);
})
.then(result => {
//output as a text
//res.send(result.text);
res.redirect('/download')
})
.finally(() => worker.terminate());
});
});
});
app.get('/download', (req, res) => {
const file = `${__dirname}/tesseract.js-ocr-result.pdf`;
res.download(file);
})
//Start up the server
const PORT = 5000 || process.env.PORT;
app.listen(PORT, () => console.log(`Hey Im running on Port ${PORT}`));