
Product
Introducing Socket Fix for Safe, Automated Dependency Upgrades
Automatically fix and test dependency updates with socket fix—a new CLI tool that turns CVE alerts into safe, automated upgrades.
ngx-web-document-scanner
Advanced tools
An Angular wrapper based on Dynamic Web TWAIN, providing components for scanning documents from USB camera and document scanner
Ngx-web-document-scanner is an Angular document scanning module built with Dynamic Web TWAIN.
Install the Angular library:
npm install ngx-web-document-scanner --save
Import the module in app.module.ts
:
import { NgxDocumentScannerModule } from 'ngx-web-document-scanner';
@NgModule({
...
imports: [
BrowserModule,
AppRoutingModule,
NgxDocumentScannerModule.forRoot({
licenseKey: "LICENSE-KEY",
resourcePath: "assets/dynamic-web-twain"}),
],
...
})
licenseKey
: get the license key of Dynamic Web TWAIN from Dynamsoft customer portal.
resourcePath
: configure the static resources in angular.json
:
"build": {
"builder": "@angular-devkit/build-angular:browser",
...
"assets": [
"src/favicon.ico",
"src/assets",
{
"glob": "**/*",
"input": "./node_modules/dwt/dist",
"output": "assets/dynamic-web-twain"
}
],
...
}
Generate a new component and inject the NgxDocumentScannerService
in *.ts
file:
ng generate component foo
import { Component, OnInit } from '@angular/core';
import { NgxDocumentScannerService } from 'ngx-web-document-scanner';
@Component({
selector: 'app-foo',
templateUrl: './foo.component.html',
styleUrls: ['./foo.component.css']
})
export class FooComponent implements OnInit {
constructor(private DocumentScannerService: NgxDocumentScannerService) {
}
ngOnInit(): void {
}
}
In *.html
file, create an HTML element as the image container and add an Angular component. There are three components in the module:
<ngx-scanner-capture>
: capture document images from a scanner.
<div id="container">
<div id="dwtcontrolContainer"></div>
</div>
<ngx-scanner-capture [useLocalService]="true" [containerId]="'dwtcontrolContainer'"
[width]="'600px'" [height]="'600px'"></ngx-scanner-capture>
<ngx-camera-capture>
: capture document images from a camera. An extra HTML element is required for the camera preview.
<div id="container">
<div id="dwtcontrolContainer"></div>
</div>
<ngx-camera-capture [useLocalService]="false" [containerId]="'dwtcontrolContainer'"
[width]="'600px'" [height]="'600px'" [previewId]="'preview'"
></ngx-camera-capture>
<div id="preview"></div>
<ngx-document-scanner>
: capture document images from a camera and do image processing: edge detection, image cropping, perspective correction and image enhancement.
<div id="container">
<div id="dwtcontrolContainer"></div>
</div>
<ngx-scanner-capture [useLocalService]="true" [containerId]="'dwtcontrolContainer'"
[width]="'600px'" [height]="'600px'"></ngx-scanner-capture>
https://github.com/yushulx/ngx-web-document-scanner/tree/main/src/app
FAQs
An Angular wrapper based on Dynamic Web TWAIN, providing components for scanning documents from USB camera and document scanner
The npm package ngx-web-document-scanner receives a total of 0 weekly downloads. As such, ngx-web-document-scanner popularity was classified as not popular.
We found that ngx-web-document-scanner demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Automatically fix and test dependency updates with socket fix—a new CLI tool that turns CVE alerts into safe, automated upgrades.
Security News
CISA denies CVE funding issues amid backlash over a new CVE foundation formed by board members, raising concerns about transparency and program governance.
Product
We’re excited to announce a powerful new capability in Socket: historical data and enhanced analytics.