7c6fe4d5d6
* Create apdf-9.0.0.toml for package metadata 009 version adds custom coordinates for vector graphics. * Update apdf-9.0.0.toml Just triggering a new build.
57 lines
1.8 KiB
TOML
57 lines
1.8 KiB
TOML
description = "Portable package for producing dynamically PDF documents"
|
|
name = "apdf"
|
|
version = "9.0.0"
|
|
authors = ["Gautier de Montmollin"]
|
|
website = "https://github.com/zertovitch/ada-pdf-writer"
|
|
licenses = "MIT"
|
|
maintainers = ["gdemont@hotmail.com"]
|
|
maintainers-logins = ["zertovitch", "Fabien-Chouteau"]
|
|
project-files = ["pdf_out_project_tree.gpr"]
|
|
executables = ["pdf_out_demo", "koch_curve", "sierpinski_arrowhead_curve"]
|
|
tags = ["pdf", "adobe", "acrobat"]
|
|
|
|
long-description = """
|
|
|
|
**PDF_Out** is an Ada package for producing easily and automatically PDF files, from an Ada program, with text, vector graphics and raster graphics.
|
|
|
|

|
|

|
|
|
|
* Ideal for the dynamic production of reports, invoices, tickets, labels, delivery notes, charts, maps etc.
|
|
* Vector graphics
|
|
* Inclusion of JPEG images
|
|
* Object oriented
|
|
* Task safe
|
|
* Endian-neutral
|
|
* Multi-platform, but native code build
|
|
* Unconditionally portable code: OS-, CPU-, compiler- independent code
|
|
* Pure Ada 2012: this package can be used in projects in Ada 2012 and later language versions
|
|
* *Free*, open-source
|
|
|
|
The creation of a PDF file is as simple as this small procedure:
|
|
|
|
```ada
|
|
with PDF_Out;
|
|
|
|
procedure Small_Demo is
|
|
pdf : PDF_Out.PDF_Out_File;
|
|
begin
|
|
pdf.Create ("small.pdf");
|
|
pdf.Put_Line ("This is a very small demo for PDF_Out...");
|
|
pdf.Close;
|
|
end Small_Demo;
|
|
```
|
|
|
|
"""
|
|
|
|
[gpr-externals]
|
|
PDF_Build_Mode = ["Debug", "Fast"]
|
|
|
|
[[depends-on]]
|
|
gid = ">=13.0.1"
|
|
|
|
[origin]
|
|
url = "https://sourceforge.net/projects/apdf/files/apdf_009.zip"
|
|
hashes = ["sha512:d62bdc1365f387a761de8eca59fbcb1b4757dea39b214592e2c8951edec0dcf826efa6c2b6b581059bf16ce23ba9f1779a9fe0dc0c12d471494a78a907df86db"]
|
|
|