Search results
PdfGen - An Oracle PL/SQL PDF Generator. Create an attractive report from a SQL query with capabilities similar to those available in sqlplus report generator, but with control over fonts, margins, page size, and orientation. (See samples directory for PDF files it produced.)
14 paź 2015 · GEN_PDF is PL/SQL based generator for PDF. GEN_PDF is mix of WPDF(1.4.8b) and AS_PDF3. Why ? WPDF is great for setting position of custom tables, colors, borders ... AS_PDF3 is great for importing fonts into PDF; GEN_PDF is set to work on apex.
14 wrz 2009 · We now have to create a pdf file. I was planning on using pdfsharp/migradoc to do it, but then we'd have to create document and time its readiness with sql server data state and mail state. It'd be nice if the db could handle everything.
Pl_fpdf is a pl/sql package that provides functions and procedure to produce pdf files from Oracle database. This code gives you the same functions than FPDF, except that it converts all the images you need in PNG. - Oracle en version 10g (10.2.0.1 and above).
20 paź 2010 · begin as_pdf_mini.init; as_pdf_mini.set_format(‘A4′,’L’); select c2 into v_blob from test where c1=’a’; if v_blob is null  then as_pdf_mini.write(‘NULLLLLL’, 10,10); else as_pdf_mini.write(‘Not Null’, 10,10); as_pdf_mini.put_image(v_blob, 10,100,400,300); end if; as_pdf_mini.save_pdf (null,’a.pdf’); end;
6 sty 2009 · It is a wrapped PL/SQL package that will generate a PDF as a blob that you could store in the database and/or serve to the user via HTTP. While somewhat limited, it works well and it's cheap.
11 kwi 2012 · as_pdf3.write( 'Anton, testing 1,2,3 with Cambria', -1, -1 ); as_pdf3.set_font( 'CambriaMath', 15 ); -- fontname. as_pdf3.write( 'Anton, testing 1,2,3 with CambriaMath', -1, -1 ); --. as_pdf3.set_font( 'helvetica', 12 ); as_pdf3.write( 'Or if you need to generate a PDF report in Chinese:', -1, 520 );