Read the latest Real Python tutorials
Project description
signpdf2
-
This package is used to insert a signature image (png) into a pdf at a specified location using python.
-
We use units instead of pixel. Units are pdf-standard units (1/72 inch).
-
You may have your input files stored on your system or on cloud with a GET url to them.
- Following example shows how you can insert a signature in a pdf (stored locally or available through a GET url)
- Then save the signed pdf locally or make a PUT request to a PUT url
-
pdf_utilities.pyfiles is not used anywhere in this package. It's just provided as an accessory.
Github
https://github.com/aseem-hegshetye/signpdf
Installation
Install with pip:
pip install signpdf2
Example
"""
:param sign_w: signature width in units
:param sign_h: signature height in units
:param pdf_file: name and path of pdf file on local system
:param signature_file: name and path of signature image file
:param page_num: page number of pdf to sign. Index starts at 0
:param offset_x: offset units horizontally from left
:param offset_y: offset units vertically from bottom
:param sign_date: Bool. If true, then add current timestamp below
signature
"""
from signpdf2.file_utilities import GetFileFromUrl, WritePdfToDisk, WritePdfToUrl
from signpdf2.sign_pdf import SignPdf
put_url = 'xyz/xyz'
pdfurl = 'https:/xyz.pdf'
sign_url = 'https://xyz.png'
output_file_name = 'signed_pdf.pdf'
pdf_file_name = GetFileFromUrl().get_file_from_url(pdfurl)
signature_file_name = GetFileFromUrl().get_file_from_url(sign_url)
sign_pdf = SignPdf(
sign_w=100,
sign_h=60,
page_num=0,
offset_x=400,
offset_y=200,
pdf_file=pdf_file_name,
signature_file=signature_file_name
)
pdf_writer = sign_pdf.sign_pdf()
WritePdfToUrl().write_pdf_to_url(pdf_writer, put_url)
WritePdfToDisk().write_pdf_to_disk(pdf_writer, output_file_name)
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file signpdf2-6.0.0.tar.gz.
File metadata
- Download URL: signpdf2-6.0.0.tar.gz
- Upload date:
- Size: 5.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.8.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
786408182600e2d9cd58916092dcdc3c32ddfb296be30544fd0996e76e6ece88
|
|
| MD5 |
933692fca20cf9804329d420a5eb6e3b
|
|
| BLAKE2b-256 |
89b4301fb8f584f55716e934ecf5ab33ac8e95c753ec11b7acacc48b2c134ad4
|
File details
Details for the file signpdf2-6.0.0-py3-none-any.whl.
File metadata
- Download URL: signpdf2-6.0.0-py3-none-any.whl
- Upload date:
- Size: 6.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.8.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fb3c8234bd9f413473b8e9e6a7b46928164c8ccc6d0d3ce3cf141a8993ff9f1f
|
|
| MD5 |
8b05dbc964f3441bb64718a0c7634164
|
|
| BLAKE2b-256 |
5b1b7b09de9206ae10aea8b1d6627f2a780668ca3716d3b55963b88d44b0b3e8
|