Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
ng2-pdf-viewer
Advanced tools
ng2-pdf-viewer is an Angular component for viewing PDF files. It provides a simple way to display PDF documents in your Angular applications with various customization options.
Basic PDF Viewing
This feature allows you to display a PDF file in your Angular application. The 'src' attribute specifies the path to the PDF file, and 'render-text' enables text rendering.
<pdf-viewer [src]="'path/to/pdf-file.pdf'" [render-text]="true"></pdf-viewer>
Pagination
This feature allows you to navigate through the pages of a PDF document. The 'page' attribute specifies the current page, and you can use buttons to change the page.
<pdf-viewer [src]="'path/to/pdf-file.pdf'" [page]="page"></pdf-viewer>
<button (click)="page = page - 1">Previous</button>
<button (click)="page = page + 1">Next</button>
Zoom
This feature allows you to zoom in and out of the PDF document. The 'zoom' attribute specifies the zoom level, and you can use buttons to adjust the zoom level.
<pdf-viewer [src]="'path/to/pdf-file.pdf'" [zoom]="zoom"></pdf-viewer>
<button (click)="zoom = zoom + 0.1">Zoom In</button>
<button (click)="zoom = zoom - 0.1">Zoom Out</button>
Rotation
This feature allows you to rotate the PDF document. The 'rotation' attribute specifies the rotation angle, and you can use a button to rotate the document by 90 degrees.
<pdf-viewer [src]="'path/to/pdf-file.pdf'" [rotation]="rotation"></pdf-viewer>
<button (click)="rotation = rotation + 90">Rotate</button>
Text Layer
This feature enables the text layer, which makes the text in the PDF selectable and searchable. The 'render-text' attribute is set to true to enable this feature.
<pdf-viewer [src]="'path/to/pdf-file.pdf'" [render-text]="true"></pdf-viewer>
pdfjs-dist is a library that provides a low-level API to render PDF documents using JavaScript. It is more flexible and powerful but requires more effort to integrate into an Angular application compared to ng2-pdf-viewer.
ngx-extended-pdf-viewer is another Angular component for viewing PDF files. It offers more features and customization options than ng2-pdf-viewer, such as support for forms, annotations, and a built-in toolbar.
react-pdf is a React component for viewing PDF files. While it is not for Angular, it offers similar functionalities to ng2-pdf-viewer for React applications, including basic viewing, pagination, and zooming.
PDF Viewer Component for Angular 2+
https://vadimdez.github.io/ng2-pdf-viewer/
npm install ng2-pdf-viewer --save
In case you're using systemjs
see configuration here.
Add PdfViewerComponent
to your module's declarations
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { AppComponent } from './app/app.component';
import { PdfViewerComponent } from 'ng2-pdf-viewer';
@NgModule({
imports: [BrowserModule],
declarations: [AppComponent, PdfViewerComponent],
bootstrap: [AppComponent]
})
class AppModule {}
platformBrowserDynamic().bootstrapModule(AppModule);
And then use it in your component
import { Component } from '@angular/core';
@Component({
selector: 'example-app',
template: `
<div>
<label>PDF src</label>
<input type="text" placeholder="PDF src" [(ngModel)]="pdfSrc">
</div>
<pdf-viewer [src]="pdfSrc"
[render-text]="true"
style="display: block;"
></pdf-viewer>
`
})
export class AppComponent {
pdfSrc: string = '/pdf-test.pdf';
}
accepts: string, object, UInt8Array
Pass pdf location
[src]="'https://vadimdez.github.io/ng2-pdf-viewer/pdf-test.pdf'"
For more control you can pass options object to [src]
.
Options object for loading protected PDF would be
{
url: 'https://vadimdez.github.io/ng2-pdf-viewer/pdf-test.pdf',
withCredentials: true
}
See more attributes here.
number
Page number
[page]="1"
supports two way data binding as well
[(page)]="pageVariable"
boolean
Works in combination with page
and sticks view to the page
[stick-to-page]="true"
boolean
Enable text rendering, allows to select text
[render-text]="true"
string
Link target
blank
none
self
parent
top
[external-link-target]="'blank'"
number
Rotate PDF
Allowed step is 90 degree, ex. 0, 90, 180
[rotation]="90"
number
Zoom pdf
[zoom]="0.5"
boolean
if set to true - size will be as same as original document
if set to false - size will be as same as container block
[original-size]="true"
Show single or all pages altogether
[show-all]="true"
Turn on or off auto resize
[autoresize]="true"
Get PDF information with callback
First define callback function "callBackFn" in your controller,
callBackFn(pdf: PDFDocumentProxy) {
// do anything with "pdf"
}
And then use it in your template:
(after-load-complete)="callBackFn($event)"
Error handling callback
Define callback in your component's class
onError(error: any) {
// do anything
}
Then add it to pdf-component
in component's template
(error)="onError($event)"
Loading progress callback - provides progress information total
and loaded
bytes. Is called several times during pdf loading phase.
Define callback in your component's class
onProgress(progressData: PDFProgressData) {
// do anything with progress data. For example progress indicator
}
Then add it to pdf-component
in component's template
(on-progress)="onProgress($event)"
Clone the project
npm start
and then open
http://localhost:8000/
FAQs
Angular 5+ component for rendering PDF
The npm package ng2-pdf-viewer receives a total of 127,494 weekly downloads. As such, ng2-pdf-viewer popularity was classified as popular.
We found that ng2-pdf-viewer demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.