Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zertovitch/ada-pdf-writer
Ada PDF Writer: a standalone, portable package for producing dynamically PDF documents
https://github.com/zertovitch/ada-pdf-writer
ada ada-language ada-library pdf pdf-generation pdf-writer pdfwriter
Last synced: 14 days ago
JSON representation
Ada PDF Writer: a standalone, portable package for producing dynamically PDF documents
- Host: GitHub
- URL: https://github.com/zertovitch/ada-pdf-writer
- Owner: zertovitch
- Created: 2019-09-15T14:31:23.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2024-03-12T01:02:47.000Z (8 months ago)
- Last Synced: 2024-07-31T20:43:10.627Z (3 months ago)
- Topics: ada, ada-language, ada-library, pdf, pdf-generation, pdf-writer, pdfwriter
- Language: Ada
- Homepage: https://apdf.sourceforge.io/
- Size: 782 KB
- Stars: 15
- Watchers: 5
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: readme.txt
Awesome Lists containing this project
- awesome-ada - ada-pdf-writer - Ada package for producing easily and automatically PDF files, from an Ada program, with text, vector graphics, images (JPEG). (Libraries / Format Readers, Writers and Checkers)
README
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