Skip to content

A sample project demonstrating how to integrate PDFTron's WebViewer into a Blazor WebAssembly project

License

Notifications You must be signed in to change notification settings

PDFTron/webviewer-blazor-wasm-sample

Repository files navigation

Blazor PDF Viewer Sample (WebViewer)

WebViewer is a powerful JavaScript-based PDF Library that's part of the PDFTron PDF SDK. It provides a slick out-of-the-box responsive UI that interacts with the core library to view, annotate and manipulate PDFs that can be embedded into any web project.

WebViewer UI

This repo is specifically designed for any users interested in integrating WebViewer into a Blazor project. This project was integrated using the Blazor WebAssembly application template.

Initial setup

Before you begin, make sure your development environment includes .NET Core 3.0 SDK and Node.js.

Install

git clone https://github.com/PDFTron/webviewer-blazor-wasm-sample.git
cd webviewer-blazor-wasm-sample
npm install

Run

npm start

Navigate to https://localhost:5000

WebViewer APIs

See API documentation.

Enabling full API

PDFNetJS Full is a complete browser side PDF SDK, unlocking viewing, parsing and editing of PDF files. To enable full API, you can modify constructor in wwwroot/js/webviewerScripts.js:

initWebViewer: function () {
    const viewerElement = document.getElementById('viewer');
    WebViewer({
        path: 'lib',
        initialDoc: 'https://pdftron.s3.amazonaws.com/downloads/pl/demo-annotated.pdf', // replace with your own PDF file
+        fullAPI: true
    }, viewerElement).then((instance) => {
        // call APIs here
    })
}

You can refer to this guide for more information

License

See license.

About

A sample project demonstrating how to integrate PDFTron's WebViewer into a Blazor WebAssembly project

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published