Angular PDF Library - WebViewer Get Started

Integrating existing Angular project with WebViewer JavaScript PDF library

This guide will show you how to integrate WebViewer Document Viewer & Editor into an Angular application.

You can also download a ready-to-go sample on GitHub.

Prerequisites

Prior to starting, you should have already installed Node and npm.

  • An existing angular application, which also means you already have Angular CLI.
  • Download WebViewer SDK
  • Get your Apryse trial key.

License Key

Apryse collects some data regarding your usage of the SDK for product improvement.

If you wish to continue without data collection, contact us and we will email you a no-tracking trial key for you to get started.

Quick start video

This video teaches you the fundamentals of installing and initializing WebViewer in any web application. If you wish, you may skip this section and proceed to the steps below.

Integrate into your application

1. Setup

From WebViewer.zip extract the WebViewer folder to your preferred location

Navigate to your angular project. Let's call the path to your project PROJ_ROOT:

PROJ_ROOT = path/to/your/angular/project/

Create two new folders:

  • Inside the PROJ_ROOT/src folder, create a new folder called wv-resources.
  • Inside the PROJ_ROOT/src/app folder, create a new folder called webviewer.

From the WebViewer folder you extracted in step 1. copy the lib folder into PROJ_ROOT/src/wv-resources/

Update the angular.json file inside your project's root folder at PROJ_ROOT/ to update assets and scripts under the options for build.
Add your own license key in place of 'YOUR_LICENSE_KEY'.

JSON

1{
2 //...
3 "assets": [
4 // existing assets can remain as they are
5 "src/wv-resources/lib"
6 ],
7 "scripts": [
8 // other scripts you may have
9 "src/wv-resources/lib/webviewer.min.js"
10 ]
11 //...
12}

2. Integrate WebViewer

Inside the PROJ_ROOT/src/app/webviewer/ folder create three new files:

webviewer.component.html

HTML

1<!-- `webviewer.component.html` -->
2<!-- Simple DOM element for WebViewer to populate -->
3<div class="page">
4 <div class="header">WebViewer</div>
5 <div #viewer class="viewer"></div>
6</div>

webviewer.component.css

CSS

1/* `webviewer.component.css` */
2/* Change this to suit your viewing needs*/
3.page {
4 display: flex;
5 flex-direction: column;
6 width: 100%;
7 height: 100%;
8}
9.header {
10 height: 60px;
11 padding: 8px 8px 8px 16px;
12 background: #0206A8;
13 box-sizing: border-box;
14 font-size: 1.2em;
15 line-height: 44px;
16 color: white;
17}
18app-webviewer {
19 flex: 1;
20 margin: 8px;
21 -webkit-box-shadow: 1px 1px 10px #999;
22 box-shadow: 1px 1px 10px #999;
23}
24.viewer { width: 100%; height: 600px; }

webviewer.component.ts

1import { Component, ViewChild, OnInit, ElementRef, AfterViewInit } from '@angular/core';
2
3declare const WebViewer: any;
4
5@Component({
6 selector: 'web-viewer',
7 templateUrl: './webviewer.component.html',
8 styleUrls: ['./webviewer.component.css']
9})
10export class WebViewerComponent implements OnInit, AfterViewInit {
11 // Syntax if using Angular 8+
12 // true or false depending on code
13 @ViewChild('viewer', {static: true / false}) viewer: ElementRef;
14
15 // Syntax if using Angular 7 and below
16 @ViewChild('viewer') viewer: ElementRef;
17
18 wvInstance: any;
19
20 ngOnInit() {
21 this.wvDocumentLoadedHandler = this.wvDocumentLoadedHandler.bind(this);
22 }
23
24 wvDocumentLoadedHandler(): void {
25 // you can access docViewer object for low-level APIs
26 const { documentViewer, annotationManager, Annotations } = this.wvInstance.Core;
27 // and access classes defined in the WebViewer iframe
28 const rectangle = new Annotations.RectangleAnnotation();
29 rectangle.PageNumber = 1;
30 rectangle.X = 100;
31 rectangle.Y = 100;
32 rectangle.Width = 250;
33 rectangle.Height = 250;
34 rectangle.StrokeThickness = 5;
35 rectangle.Author = annotationManager.getCurrentUser();
36 annotationManager.addAnnotation(rectangle);
37 annotationManager.drawAnnotations(rectangle.PageNumber);
38 // see https://docs.apryse.com/api/web/WebViewerInstance.html for the full list of low-level APIs
39 }
40
41 ngAfterViewInit(): void {
42 // The following code initiates a new instance of WebViewer.
43
44 WebViewer({
45 path: '../../wv-resources/lib',
46 licenseKey: 'YOUR_LICENSE_KEY', // sign up to get a key at https://dev.apryse.com
47 initialDoc: 'https://pdftron.s3.amazonaws.com/downloads/pl/webviewer-demo.pdf'
48 }, this.viewer.nativeElement).then(instance => {
49 this.wvInstance = instance;
50
51 // now you can access APIs through this.webviewer.getInstance()
52 instance.UI.openElement('notesPanel');
53 // see https://docs.apryse.com/web/guides/ui/apis/
54 // for the full list of APIs
55
56 // or listen to events from the viewer element
57 this.viewer.nativeElement.addEventListener('pageChanged', (e) => {
58 const [ pageNumber ] = e.detail;
59 console.log(`Current page is ${pageNumber}`);
60 });
61
62 // or from the docViewer instance
63 instance.Core.documentViewer.addEventListener('annotationsLoaded', () => {
64 console.log('annotations loaded');
65 });
66
67 instance.Core.documentViewer.addEventListener('documentLoaded', this.wvDocumentLoadedHandler)
68 })
69 }
70}

Inside of app.module.ts in the PROJ_ROOT/src/app/ folder import webviewer component:

JavaScript

1import { BrowserModule } from '@angular/platform-browser';
2import { NgModule } from '@angular/core';
3
4// Your other imports
5import { AppComponent } from './app.component';
6+import { WebViewerComponent } from './webviewer/webviewer.component';
7
8@NgModule({
9 declarations: [
10 AppComponent,
11+ WebViewerComponent
12 ],
13 imports: [
14 BrowserModule
15 ],
16 providers: [],
17 bootstrap: [ AppComponent ]
18})
19export class AppModule { }

Inside of app.component.html in the PROJ_ROOT/src/app folder place <web-viewer> tag:

HTML

1<!--The content below is only a placeholder and can be replaced.-->
2<div style="text-align:center">
3<h1>
4Welcome to {{ title }}!
5</h1>
6</div>
7<!-- Place the webviewer component wherever you need in your application. Remember to style the component using webviewer.component.css to suit your needs -->
8+<web-viewer></web-viewer>

You can test that the WebViewer is now part of your application by running the following:

sh

1ng serve

In your browser, go to localhost:4200 to see the WebViewer in action.

Troubleshooting

Unable to load WebViewer Find out more about possible solutions to errors in loading WebViewer in your angular project.

Next step

Did you find this helpful?

Trial setup questions?

Ask experts on Discord

Need other help?

Contact Support

Pricing or product questions?

Contact Sales