pl_fpdf
pl_fpdf copied to clipboard
PL-SQL library to generate pdf files from Oracle database.
ORA-20100: PL_FPDF error: Output : ORA-06502: PL/SQL: numeric or value error
We've just migrated from Oracle 11 to 19c and experiencing big issues with existing working functionality.
Procedure `p_putstream(pData in out NOCOPY blob)` doesn't handle the blob data correctly. By reading them into a varchar2 variable, it get's converted into the hex representation. The following change works...
Is there any way to create a password projected pdf file using PL/SQL.
Although stating being compatible with Oracle 10.2.0.1 or above, the package body uses regexp_count, which isn't available in 10g.
Hi Pierre-Gilles, I would like to embed Calibri font but do not know how to do it. I will appreciate if you give me an example. I was experimenting myself...
 procedure p_prueba is begin PL_FPDF.FPDF('P','cm','A4'); PL_FPDF.openpdf; PL_FPDF.AddPage(); PL_FPDF.SetFont('courier', '', 12); PL_FPDF.SetY(4); PL_FPDF.SetX(8); PL_FPDF.Cell(30,0,'CERTIFÍCADO DE TRABAJO'); -- PL_FPDF.Cell(30,0,'CERTIFÍCADO DE TRABAJO MAÑANA'); PL_FPDF.Output(); end p_prueba; 
Using pl_fpdf I'm able to put image in 10g environment on PDF reports, but when I try the same code in 11g I start getting the error message. look like...
Unable to print image using PL_FPDF on PDF , Any solution. Environment Linux 11g NLS_CHARACTERSET AL32UTF8 Thanks,
I love your code, but I find it is missing one key feature I am looking for - support for PNG with color type=06 (RGB with alpha channel). Is there...