I use Ionic framework for building mobile app. I call a webapi service,and it returns a byte array to me.(thi byte array is a pdf file that saved in db.) Now, I want to show this pdf file on my mobile application. How can I show a pdf file using ionic?
I read articles on net. But I can not achieve open pdf file. Can anyone give me idea ?
Thanks in advance.
What I did to achieve this was to send the PDF by email using the following plugin : https://github.com/katzer/cordova-plugin-email-composer
Then, you will be able to open the PDF. I did not find a better solution with Ionic.
Related
I am running a flask server locally. I want to choose a local file first and display it on the website. Can I do this by not uploading it? If I can, how can I finish it? Thanks.
I just want to choose a file path using a file chooser and display it on HTML. But the solutions I get are all file uploading. Could you please help me with this?
Thanks.
Please refer this. HTML5 File API
Is there any way to save the PDF files that come as attachment in Mail to my iOS app like copying to the iBooks ?
Any tutorials would be helpful.
You can open that file in your app. Then you can save it where ever you want. check this https://developer.apple.com/library/ios/documentation/FileManagement/Conceptual/DocumentInteraction_TopicsForIOS/Articles/RegisteringtheFileTypesYourAppSupports.html#//apple_ref/doc/uid/TP40010411-SW1
I' have to download some images from a server folder and save in my sencha application to show them offline. I've found a phonegap plugin that download and save files in document folder of the app. Once I saved the images how can I show them in my sencha app?
You can probably have a store with the images mapping their paths and use those with the phonegap File Api.
For opening the file in device,you can use
window.plugins.fileOpener.open("file:///path_to file.jpg")
For more details refer to https://github.com/pwlin/cordova-plugin-file-opener2
I am using paperclip to upload docx doc and pdf files to my railsapp, is there any way I can view this uploaded files in the browser itself in pdf format, without downloading it ?
Try pdf.js.
Firefox recently started using it as viewer for PDF files, but you can integrate it in your app. But you still need to 'download' it, that is, load into the browser.
Can some one please help me with a sample code (phonegap on WP7) that would fetch a xml from given url, parse the xml and show contents in a list.
I googled a lot but could not find a working solution
Thx.
Since phonegap is basically rendering HTML files you should look at a way of doing it in HTML and Javascript. Take a look at this question and answer, it should help you out