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 2015 · Make a PDF with the data from the SQL server. Here is some sample code: FileStream fs = new FileStream(filename, FileMode.CreateNew); Document doc = new Document(PageSize.A4); PdfWriter pdfWriter = PdfWriter.GetInstance(doc, fs); PdfPage page = new PdfPage(); pdfWriter.PageEvent = page;
2 cze 2021 · Using the new SQL scalar function GENERATE_PDF to create PDF in the IFS from spool files
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;
PL/PDF is a PL/SQL package collection that you can use to create PDF files. This guide will help you from the beginning to generate your first PL/PDF generated PDF sample file.
11 kwi 2012 · declare x pls_integer; begin as_pdf3.init; as_pdf3.write( 'But others fonts and encodings are possible using TrueType fontfiles.' ); x := as_pdf3.load_ttf_font( 'MY_FONTS', 'refsan.ttf', 'CID', p_compress => false ); as_pdf3.set_font( x, 12 ); as_pdf3.write( 'The Windows MSReference SansSerif font contains a lot of encodings, for instance ...