User Guide > How To ... > Recognize Text in Different Languages |
OCRXpress for Node.js can recognize text in over 30 different languages. It is very simple to specify which language to use in the recognition process.
![]() |
The default language is English and it is included with the default installation. |
These are the four steps involved:
Copy Code | |
---|---|
$ npm install ocr-lang-all |
Copy Code | |
---|---|
$ npm install ocr-lang-ita |
Copy Code | |
---|---|
recognizeParams = {
language: 'Italian'
} |
Copy Code | |
---|---|
var lang = require('ocr-lang-all'); |
or
Copy Code | |
---|---|
var lang = require('ocr-lang-ita'); |