Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
ng2-pdfjs-viewer
Advanced tools
This is a super simple library for displaying pdf inline/embedded or in a new tab along with a feature wrich viewer. It uses mozilla's pdfjs viewer behind the scenes and supports angular(2/4/5/6/7). Extremely lightweight, easiest to integrate and use, this library have only one dependancy (@angular/core).
ng2-pdfjs-viewer
$ npm install ng2-pdfjs-viewer --save
And then configure it in your Angular AppModule
:
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
import { PdfJsViewerModule } from 'ng2-pdfjs-viewer'; // <-- Import PdfJsViewerModule module
@NgModule({
declarations: [
AppComponent,
],
imports: [
BrowserModule,
PdfJsViewerModule // <-- Add to declarations
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
Copy node_modules\ng2-pdfjs-viewer\pdfjs
to your public or asset folder Or use TransferWebpackPlugin
or similar plugins/task/build task to make sure the static files are accessible from the public folder in your application/webserver. Please note, if you decide to put pdfjs
folder anywhere else other than the assets
folder, make sure you also set [pdfJsFolder]
property to help locate the folder.
TransferWebpackPlugin
Sample code
var TransferWebpackPlugin = require('transfer-webpack-plugin');
...
plugins: [
new TransferWebpackPlugin([
{ from: 'node_modules\ng2-pdfjs-viewer\pdfjs', to: path.join(__dirname, 'assets') }
])
]
Attribute | Description | Type | Default Value |
---|---|---|---|
[pdfJsFolder] | Set path to pdfjs's web and build folders. | string | assets folder path |
[externalWindow] | Open in new tab. Set to true to open document in a new tab | boolean | false |
downloadFileName | Sets/Changes the name of document to be downloaded. If the file name does not ends in .pdf , the component will automatically add it for you. | string | Actual name of the document |
[page] | Show specific page. E.g page=3 | number | 1 |
[lastPage] | Show last page of the document once it is loaded(If set to true ). If you use this option along with page option, undesired effects might occur | boolean | false |
nameddest | Go to a named destination. E.g. To go to section 5.1 use like nameddest=5.1. Do not mix this option with page and lastPage options | string | |
zoom | Set zoom level of document. Applicable values are auto , page-width , page-height , page-fit , 200 (As a zoom percentage), left offset (As in "auto,18,827"), top offset (As in "auto,18,127") | string | auto |
[print] | Show/hide print button. Set false to hide | boolean | true |
[startPrint] | Start print preview of document. This combined with externalWindow could mimic a print preview functionality just like the one in gmail. | boolean | |
[download] | Show/hide download button. Set false to hide | boolean | true |
[startDownload] | Download document as soon as it opens. You may put this to good use. | boolean | |
[rotatecw] | Rotate document clock wise 90° | boolean | |
[rotateccw] | Rotate document anti-clock wise 90° | boolean | |
cursor | Type of cursor. Available options are HAND /H , SELECT /S ,ZOOM /Z . Case is irrelevant. | SELECT /S | |
scroll | Sets scroll. Available options are VERTICAL /V , HORIZONTAL /H ,WRAPPED /W . Case is irrelevant. | VERTICAL /V | |
spread | Sets Odd or Even spread. Available options are ODD /O , EVEN /E ,NONE /N . Case is irrelevant. | NONE /N | |
[fullScreen] | Show/hide presentation(full screen) button. Set false to hide | boolean | true |
cursor | Type of cursor. Available options are HAND /H , SELECT /S ,ZOOM /Z . Case is irrelevant. | SELECT /S | |
pagemode | State of sidebar. Available options are none , thumbs ,bookmarks ,attachments . E.g. pagemode=attachments . | none | |
[openFile] | Show/hide open file button. Set false to hide | boolean | true |
[viewBookmark] | Show/hide bookmark button. Set false to hide | boolean | true |
[showSpinner] | Show a simple css based spinner/progress before the document loads | boolean | true |
Please note, copy step is mandatory to enjoy all of the different options listed above. You may also avoid this step and could directly use https://github.com/mozilla/pdf.js/wiki/Setup-pdf.js-in-a-website if you wish to just use the default viewer
For your convenience a sample app using angular6 is available under this repository, if you would like to see it in action (Folder ng6SampleApp). It shows many ways to configure this component for different needs.
Once your PdfJsViewerComponent is imported you can use it in your Angular application like this:
<!-- You can now use your library component in app.component.html -->
<h1>
{{title}}
</h1>
<ng2-pdfjs-viewer pdfSrc="your pdf file path"></ng2-pdfjs-viewer>
Here is a use case to download and open the pdf as byte array and open in new tab/window: Please note, pdfSrc can be a Blob or Uint8Array as well For [externalWindow]="true" to work, pop-ups needs to be enabled at browser level
<!-- your.component.html -->
<button (click)="openPdf();">Open Pdf</button>
<!-- Please note, you need a copy of https://github.com/intbot/ng2-pdfjs-viewer/tree/master/pdfjs for some of the below features to work -->
<div style="width: 800px; height: 400px">
<ng2-pdfjs-viewer
#pdfViewer
[pdfJsFolder]="'pdfjs'"
[externalWindow]="true"
[downloadFileName]="'mytestfile.pdf'"
[openFile]="false"
[viewBookmark]="false"
[download]="false"></ng2-pdfjs-viewer>
</div>
<!-- your.component.ts-->
export class RateCardComponent implements OnInit {
@ViewChild('pdfViewer') pdfViewer
...
private downloadFile(url: string): any {
return this.http.get(url, { responseType: ResponseContentType.Blob }).map(
(res) => {
return new Blob([res.blob()], { type: "application/pdf" });
});
}
public openPdf() {
let url = "url to fetch pdf as byte array";
// url can be local url or remote http request to an api/pdf file.
// E.g: let url = "assets/pdf-sample.pdf";
// E.g: https://github.com/intbot/ng2-pdfjs-viewer/tree/master/sampledoc/pdf-sample.pdf
// E.g: http://localhost:3000/api/GetMyPdf
// Please note, for remote urls to work, CORS should be enabled at the server. Read: https://enable-cors.org/server.html
this.downloadFile(url).subscribe(
(res) => {
this.pdfViewer.pdfSrc = res; // pdfSrc can be Blob or Uint8Array
this.pdfViewer.refresh(); // Ask pdf viewer to load/reresh pdf
}
);
}
Given below are examples of writing server apis(In aspnetcore c#) which returns pdfs as byte array. You can choose any server side technology as long as pdf is returned as byte array
Use case 1. As a RDLC local report viewer
[HttpGet]
[Route("MyReport")]
public IActionResult GetReport()
{
// var reportObjectList1
// var reportObjectList2
var reportViewer = new ReportViewer {ProcessingMode = ProcessingMode.Local};
reportViewer.LocalReport.ReportPath = "Reports/MyReport.rdlc";
reportViewer.LocalReport.DataSources.Add(new ReportDataSource("NameOfDataSource1", reportObjectList1));
reportViewer.LocalReport.DataSources.Add(new ReportDataSource("NameOfDataSource2", reportObjectList1));
Warning[] warnings;
string[] streamids;
string mimeType;
string encoding;
string extension;
var bytes = reportViewer.LocalReport.Render("application/pdf", null, out mimeType, out encoding, out extension, out streamids, out warnings);
// The below content-disposition is lost when we create Blob() object in client browser. Hence commented out
//var cd = new System.Net.Mime.ContentDisposition
//{
// FileName = "somepdf.pdf",
// Inline = true
//};
//Response.Headers.Add("Content-Disposition", cd.ToString());
return File(bytes, "application/pdf")
}
Use case 2. Return a physical pdf from server
[HttpGet]
[Route("GetMyPdf")]
public IActionResult GetMyPdf()
{
var stream = await {{__get_stream_here__}}
return File(stream, "application/pdf")); // FileStreamResult
// OR
// var bytes = await {{__get_bytes_here__}}
// return File(bytes, "application/pdf")
}
There are several how to questions being posted in issues section of this repository. Questions would be better answered if posted on www.stackoverflow.com with tag ng2-pdfjs-viewer (Please create ng2-pdfjs-viewer tag if not already present on SO)
AngularJS angular-pdfjs-viewer
MIT © Code Hippie
FAQs
<img src="h
The npm package ng2-pdfjs-viewer receives a total of 22,944 weekly downloads. As such, ng2-pdfjs-viewer popularity was classified as popular.
We found that ng2-pdfjs-viewer demonstrated a healthy version release cadence and project activity because the last version was released less than 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.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.