ng-pdfviewer
ng-pdfviewer copied to clipboard
AngularJS PDF viewer directive using pdf.js.
My controller code is :: ``` venueApp.controller('venueController',['$scope',PDFViewerService',function($scope,pdf){ $scope.viewer = pdf.Instance("viewer"); $scope.pageLoaded = function(curPage, totalPages) { $scope.currentPage = curPage; $scope.totalPages = totalPages; }; $scope.nextPage = function() { $scope.viewer.nextPage(); }; $scope.prevPage =...
i am trying to add a token authorization to pdf-viewer because i have an api to get file, but this api require pass a token authorization when send request, how...
does the library require a specific angular version? I'm getting this error: Unknown provider: pdfProvider
Hi akrennmair, First of all thank you very much for writing this directive. This is really for so many people. Can you please add the text selection as well to...
Hi, I've added some feature for my needs. - Zoom-in, zoom-out and zoom-reset - Base64 string encoded load (need StringView.js library) - Reset (remove old canvas and add new one,...
would you please add package.json so that we can add your lib in https://cdnjs.com. thank you very much! https://github.com/cdnjs/cdnjs/issues/5020
I use Gulp to aggregate/minify all vendor scripts and get vendor.min.js loaded on page. pdf.js is trying to look for vendor.min.worker.js(which will obviously not exisitng), why is the worker file...
Hello, I am trying to use this directive with my project but I am not able to view the file because I am always getting this exception Unexpected server response...
This adds another attribute to the directive that gives the ability to render one page, or all pages of the pdf.
If I create 2 or more pdfs the end result will be, a concatenated pdf. I'm using the pdfviewer, to allow the user to view and then download, however, downloading...