Skip to content

Latest commit

 

History

History
46 lines (33 loc) · 1.63 KB

README.md

File metadata and controls

46 lines (33 loc) · 1.63 KB

TiJSPDF

TiJSPDF is a JSPDF plugin for Titanium Mobile applications that allows you to generate your PDFs using the JSPDF library and manipulate them within your Titanium Mobile application.

This plugin is maintained separately from Titanium and is not currently supported by Appcelerator through any premium or community support offereings.

Please double check all of your code before deploying an app with this plugin. It took all of 10 minutes to port and I cannot speak to the practices of the original author. If you see something wrong and you think that you know a better way, then fork it and git 'er done.

Documentation

Visit the JSPDF blog post for PDF creation guidance.

In The Box

This project contains an example application using a demo from the JSPDF demo page. If you'd rather just get going on making your own app, you can download just the modified js files from the 'Downloads' section. Just drop the uncompressed files into your 'Resources' folder and start building.

Usage

Ripped straight from the included example app.

// Include the JSPDF libraries
Ti.include('jspdf.js');

var doc = new jsPDF();
doc.text(20, 20, 'Hello world!');
doc.text(20, 30, 'This is client-side Javascript, pumping out a PDF.');
doc.addPage();
doc.text(20, 20, 'Do you like that?');

var file = Ti.Filesystem.getFile(Ti.Filesystem.tempDirectory, 'test.pdf');
file.write(doc.output());
var pdfview = Ti.UI.createWebView({width:'100%',height:'100%',data:file});
var win = Ti.UI.createWindow();
win.add(pdfview);
win.open({modal:true});

And thats about it.