8000 GitHub - sowebio/ada-pdf-writer: Ada PDF Writer: a standalone, portable package for producing dynamically PDF documents
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

sowebio/ada-pdf-writer

 
 

Repository files navigation

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:


  with PDF_Out;

  procedure Hello is
    pdf : PDF_Out.PDF_Out_File;
  begin
    pdf.Create ("tiny.pdf");
    pdf.Put_Line ("Hello world !");
    pdf.Close;
  end;


====

Full description in: pdf_writer.txt

About

Ada PDF Writer: a standalone, portable package for producing dynamically PDF documents

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Ada 89.4%
  • Perl 10.2%
  • Batchfile 0.4%
0