PyFPDF is a library for PDF document generation under Python, ported from
PHP (see FPDF "Free"-PDF, a well-known PDFlib-extension replacement with many examples, scripts and derivatives). Compared with other PDF libraries, PyFPDF is simple, small and versatile, with advanced capabilities and easy to learn, extend and maintain. Features * Python 2.5 to 2.7 support (with experimental Python3 support) * Unicode (UTF-8) TrueType font subset embedding * Barcode I2of5 and code39, QR code coming soon ... * PNG, GIF and JPG support (including transparency and alpha channel) * Templates with a visual designer & basic html2pdf * Exceptions support, other minor fixes, improvements and PEP8 code cleanups WWW: https://code.google.com/p/pyfpdf/ PR: 203816 Submitted by: Fabiano Sidler <fabianosidler@swissonline.ch>
This commit is contained in:
parent
b713707b93
commit
f12b59b362
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=400480
4 changed files with 39 additions and 0 deletions
|
@ -193,6 +193,7 @@
|
|||
SUBDIR += psutils
|
||||
SUBDIR += py-cups
|
||||
SUBDIR += py-fonttools
|
||||
SUBDIR += py-fpdf
|
||||
SUBDIR += py-pdf
|
||||
SUBDIR += py-pollyreports
|
||||
SUBDIR += py-preppy
|
||||
|
|
19
print/py-fpdf/Makefile
Normal file
19
print/py-fpdf/Makefile
Normal file
|
@ -0,0 +1,19 @@
|
|||
# Created by: Fabiano Sidler <fabianosidler@swissonline.ch>
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= fpdf
|
||||
PORTVERSION= 1.7.2
|
||||
CATEGORIES= print python
|
||||
MASTER_SITES= CHEESESHOP
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
||||
MAINTAINER= fabianosidler@swissonline.ch
|
||||
COMMENT= Simple PDF generation for Python
|
||||
|
||||
LICENSE= LGPL3
|
||||
|
||||
USES= python
|
||||
USE_PYTHON= autoplist distutils
|
||||
NO_ARCH= yes
|
||||
|
||||
.include <bsd.port.mk>
|
2
print/py-fpdf/distinfo
Normal file
2
print/py-fpdf/distinfo
Normal file
|
@ -0,0 +1,2 @@
|
|||
SHA256 (fpdf-1.7.2.tar.gz) = 125840783289e7d12552b1e86ab692c37322e7a65b96a99e0ea86cca041b6779
|
||||
SIZE (fpdf-1.7.2.tar.gz) = 39504
|
17
print/py-fpdf/pkg-descr
Normal file
17
print/py-fpdf/pkg-descr
Normal file
|
@ -0,0 +1,17 @@
|
|||
PyFPDF is a library for PDF document generation under Python, ported from
|
||||
PHP (see FPDF "Free"-PDF, a well-known PDFlib-extension replacement with
|
||||
many examples, scripts and derivatives).
|
||||
|
||||
Compared with other PDF libraries, PyFPDF is simple, small and versatile,
|
||||
with advanced capabilities and easy to learn, extend and maintain.
|
||||
|
||||
Features
|
||||
* Python 2.5 to 2.7 support (with experimental Python3 support)
|
||||
* Unicode (UTF-8) TrueType font subset embedding
|
||||
* Barcode I2of5 and code39, QR code coming soon ...
|
||||
* PNG, GIF and JPG support (including transparency and alpha channel)
|
||||
* Templates with a visual designer & basic html2pdf
|
||||
* Exceptions support, other minor fixes, improvements and PEP8 code
|
||||
cleanups
|
||||
|
||||
WWW: https://code.google.com/p/pyfpdf/
|
Loading…
Reference in a new issue