newOnAndroid
newOnAndroid

Reputation: 141

Android: How can I convert a receipt to a pdf file?

I want to make an receipt in pdf file, like the below image, in android programmatically? The following is an example of a printed receipt, please help.

enter image description here

Upvotes: -2

Views: 2057

Answers (1)

corti.nico
corti.nico

Reputation: 91

You can try to use itext. http://sourceforge.net/projects/itext/

You can find a good eBook in itext library here: https://www.manning.com/books/itext-in-action-second-edition and if you want free books, take a look at The Best iText Questions on StackOverflow and ZUGFeRD: The Future of Invoicing (the ZUGFeRD book explains how to create invoices, which is very similar to creating receipts).

And a good tutorial (vogella) can be found here: http://www.vogella.com/tutorials/JavaPDF/article.html

Alternatively, you can try APW Library http://sourceforge.net/projects/apwlibrary/

Upvotes: 3

Related Questions