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
svn2github/pdf_out
This is a clone of an SVN repository at https://svn.code.sf.net/p/apdf/code. It had been cloned by http://svn2github.com/ , but the service was since closed. Please read a closing note on my blog post: http://piotr.gabryjeluk.pl/blog:closing-svn2github . If you want to continue synchronizing this repo, look at https://github.com/gabrys/svn2github
Ada