B4A Library Printing and Pdf creation - Erel    May 18, 2020   (54 reactions)   tags: print, pdf, pdf print, Printing and Pdf This is an Android 4.4+ (API 19+) library. Its two main features are: 1. Creating Pdf documents with the PdfDocument object. 2. Printing with the Printer object. Lets start with PdfDocument. Dim pdf As PdfDocument pdf.Initialize pdf.StartPage(595, 842) 'A4 size pdf.Canvas.DrawLine(2, 2, 593 , 840, Colors.Blue, 4) pdf.Canvas.DrawText("Hello", 100, 100, Typeface.DEFAULT_BOLD, 30 / GetDeviceLayoutValues.Scale , Colors.Yellow, "CENTER") pdf.FinishPage Dim out... B4J Library make PDF with openPDF - Gianni M    May 15, 2025   (5 reactions) This class creates pdf documents using openPDF... B4A Class [B4X] PDF Generator - B4X Cross Platform - Class 100% B4X Code - spsp    Jan 3, 2024   (56 reactions) Hi, This class cPDF.bas (version 0.6 - 2024-01-03) generate PDF File with limited fonctionnalities (but enough for me) Add pages with different paper size (use constants or custom size) PDF standards font (Courier, Helvetica, Times, Symbol and Zapfdingbats), style (Normal, Bold, Italic, Underline and StrikeThrough), encoding cp1252 draw text : single line of text at position x, y draw text flow... draw images (only PNG, all format that can be loaded with xui.loadbitmap) use pdf commands directly... B4A Library HtmlToPdf - FabioC6    Mar 22, 2019   (16 reactions) Hello everybody, I've created this library that converts an html file (or string) to a pdf file programmatically. A couple of important notes: it only works on devices with SDK versions >= 21 and it cannot read files from the asset folder (you can either copy the file to the internal folder and use it from there or read the content with File.ReadString and use the result) You can find an example attached to this thread. PalmoHtmlToPdf Events: Finished (Success As Boolean... B4A Question PDF "Printing" library, different results on each device - vecino    Jun 14, 2024 Hi, using the "Printing" library to create PDF files, on one device it creates fine, on others small letters, on others large and overlapping letters, etc.
Is there something I don't know about?
Thank you very much.
For example, PDF created on my tablet:
154612
PDF created on the tablet of one of my clients:
154613... B4J Library PdfJet Rewrapped - EnriqueGonzalez    Aug 27, 2018   (13 reactions)   tags: Gonzalies Hi! I do like a lot this library and a lot of people uses it, but the awesome library wrapped by @warwound it is a bit outdated. so i decided to wrap mine, but i have never been able to compile... with a single drawString method. Why? well... it is more of a tutorial than a full wrapped library, i think its... download the evaluation version of pdfJet here: http://pdfjet.com/java/download.html In the zipped file you will find pdfJet.jar Version 5.9, copy to your additional jar folder and it should work... B4J Library PDFBox (beta). Editing PDF AcroForm Fieldvalues, creating PDFs with new AcroForm - DonManfred    Mar 4, 2020   (27 reactions) This is a partial wrap for Apache PDFBox. In this early stage i am focusing on manipulating PDF AcroForms and building new PDF with AcroForm. It is also possible to create some javascript which can run when you open the PDF on acrobat. The Examplecode and the needed Objects i got my inspiration from one of the Examples. Example Code (just my test code) 'Building a new PDF...:/sample_form.pdf") doc.close() The attached sample_form.pdf is the PDF created... B4J Library [BANanoPDFView] JQuery In-Browser PDF Viewer - Mashiane    Nov 13, 2019   (3 reactions) Ola Well, this basically does what it says. It uses the built-in PDF viewer to view your PDF files. Just pass it the URL of the pdf file and the width and height of the HTML element you want to... a HTML element that you want the PDF document to render to. 'get the body of the page body... a div to hold the pdf document body.Append($"<div id="basic"></div>... of the iframe view.Initialize("basic") 'set the path of the pdf file to view... B4A Library Java-fPDF library - Create PDF files in B4A - Andrew (Digitwell)    Jan 11, 2017   (6 reactions) Given that I have (and will be making use of several of the libraries that you have graciously provided, I thought I would share as well.
My first attempt, so please be gentle...
This library... B4J Library [BANanoJsPDFCore] - The Ultimate Drag n Drop PDF Document Creation Engine - Mashiane    Jun 17, 2021   (7 reactions) Ola Attached is the core library that is pure framework independent. We have worked on a simple example using the Skeleton Library. Tutorial on usage (same methodology applies) 115141 Attached here is: 1. The core b4x library that you can copy to external libraries folder. 2. The core b4x library source code 3. The core demo as depicted above. Have fun and enjoy. ?... Page: 1   2   3   4   5   6   7   |