'how to open PDF URL into the app without downloading in ionic 5
i am already try with this plugin but no luck
how to achieve like this
Solution 1:[1]
Here is Ionic 5 Repo with PDF View without download
How to run :
- Clone Project
npm i
npm start
For More set PDF Options
Solution 2:[2]
You can also directly open the PDF by using window.open
window.open(this.URL + name +'.pdf');
It will work.
Solution 3:[3]
You can use PDF.js component: https://mozilla.github.io/pdf.js/
Here is a video of PDF.js component wrapped as Appery.io plugin https://www.youtube.com/watch?v=JeEJl7K-2H0
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | Chandrakant Devani |
Solution 2 | Hassan Ali |
Solution 3 | plotnik |