https://github.com/sirwanafifi/signpdf-ps
https://github.com/sirwanafifi/signpdf-ps
itextsharp powershell
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/sirwanafifi/signpdf-ps
- Owner: SirwanAfifi
- Created: 2023-02-04T11:40:47.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-02-04T12:48:09.000Z (over 3 years ago)
- Last Synced: 2025-11-13T16:08:36.476Z (8 months ago)
- Topics: itextsharp, powershell
- Language: PowerShell
- Homepage: https://sirwan.info
- Size: 84 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SignPdf
This PowerShell module allows you to sign PDF documents by adding a user's signature to it. This can be particularly useful for businesses where you need to sign invoices, contracts, or other important documents.
## Features
- Ability to add a user's signature to a PDF document
- Option to specify the location of the signature on the document
## Installation
All required binary files for [iTextSharp.LGPLv2.Core](https://github.com/VahidN/iTextSharp.LGPLv2.Core) should be in 1.0.0/Public/dependencies. To install the module, follow these steps:
```powershell
PS /> Publish-Module -Path ./SignPdf/1.0.0 -Repository PSLocal
PS /> Install-Module -Name SignPdf -Repository PSLocal
```
## Usage
```powershell
Set-PDFSingature -PdfToSign "./invoice.pdf" -SignatureImage "./sign.jpg"
```
## Dependencies
- [iTextSharp.LGPLv2.Core](https://github.com/VahidN/iTextSharp.LGPLv2.Core)