Microsoft Windows Phone 8.1 support ends (13 Jul 2017)

Microsoft has ended support for Windows Phone 8.1

Questions about Android development and PDF

Create an empty PDF

More
IP: 217.141.78.166 5 years 7 months ago #15411 by simone.p
Create an empty PDF was created by simone.p
How do I create an empty PDF in A4 format?
More
IP: 111.196.242.169 5 years 7 months ago - 5 years 7 months ago #15414 by radaee
Replied by radaee on topic Create an empty PDF
Code:
Document doc = new Document(); doc.Create("/sdcard/test.pdf"); Page page = doc.NewPage(210 * 72 / 25.4f, 297 * 72 / 25.4f); page.ObjsStart(); PageContent content = new PageContent() //draw elements on content, and add resources to page object. //... page.AddContent(content); page.Close(); doc.Save(); doc.Close();
for more helps, you can visit:
www.radaeetz.com/help/java/gnew.html
and
www.radaeetz.com/help/java/gopen.html
Last edit: 5 years 7 months ago by radaee.
Time to create page: 0.396 seconds
Powered by Kunena Forum