How to create pdf file of the webview content in titanium

吃可爱长大的小学妹 提交于 2019-12-25 05:25:17

问题


I am new to Titanium. I have a webview. The content of the webview can be a pdf file, or a url. I want to save the webview content as a pdf file. I have created webview using the below code:

    var webViews = Ti.UI.createWebView({
    left : 0,
    top : 0,
    right : 0,
    bottom : 0, 

    url : 'http://www.appcelerator.com'
    });

Please anyone help me out...


回答1:


You cant directly convert the webview data in pdf but you have to first parse html and then use the js pdf to create the pdf.Here is the code with example

https://github.com/Mindelusions/TiJSPDF

Thanks



来源:https://stackoverflow.com/questions/17915752/how-to-create-pdf-file-of-the-webview-content-in-titanium

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!