Home
Name Modified Size InfoDownloads / Week
apdf_006.zip 2023-06-25 544.5 kB
apdf_005_r3.zip 2022-04-15 544.7 kB
apdf_005_r2.zip 2020-02-05 544.0 kB
apdf_005.zip 2019-09-05 542.2 kB
apdf_004.repacked.zip 2018-07-28 498.6 kB
apdf_004.zip 2018-05-06 491.3 kB
readme.txt 2017-12-10 504 Bytes
apdf_003.zip 2017-11-27 488.6 kB
apdf_002.zip 2016-04-23 495.4 kB
apdf_001.zip 2016-01-09 488.9 kB
Totals: 10 Items   4.6 MB 28
PDF Writer 
==========

The PDF Writer consists of a package, PDF_Out,
which produces PDF files - as "physical" files, or as
other types of data streams.

The creation of a PDF file is as simple as this
small procedure (Ada 2005+ object-oriented syntax):


  with PDF_Out; use PDF_Out;
   
  procedure Small_demo is 
    pdf: PDF_Out_File;
  begin 
    pdf.Create("Small.pdf");
    pdf.Put_Line("Hello world !");
    pdf.Close;
  end;


====

Full description in: pdf_writer.txt
Source: readme.txt, updated 2017-12-10