如何在钛中创建webview内容的pdf文件

时间:2013-07-29 03:45:53

标签: pdf webview titanium titanium-mobile

我是Titanium的新手。我有webviewwebview的内容可以是pdf文件,也可以是url。我想将webview内容另存为pdf个文件。我使用以下代码创建了webview:

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

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

请有人帮帮我......

1 个答案:

答案 0 :(得分:1)

您无法直接转换pdf中的webview数据,但您必须首先解析html,然后使用js pdf创建pdf.Here是带示例的代码

https://github.com/Mindelusions/TiJSPDF

由于