https://github.com/sharadcodes/img2pdf-action
Action for converting images stored in a folder to pdfs
https://github.com/sharadcodes/img2pdf-action
Last synced: 18 days ago
JSON representation
Action for converting images stored in a folder to pdfs
- Host: GitHub
- URL: https://github.com/sharadcodes/img2pdf-action
- Owner: sharadcodes
- License: gpl-3.0
- Created: 2020-03-06T07:08:18.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-03-06T07:20:00.000Z (almost 6 years ago)
- Last Synced: 2025-01-18T08:23:06.947Z (12 months ago)
- Language: Shell
- Size: 20.5 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# img2pdf-action
Action for converting images stored in a folder to pdfs according to the specified page size and saving the output pdfs to the specified folder.
To use this action add following to your workflow file
```yml
- name: Image 2 PDF Action
uses: sharadcodes/img2pdf-action@v1.0
with:
image-folder: 'original_images' # This is a Required field & this folder has original images
page-size: 'A4' # This is a Required field & it is used to specify the page size of PDFs
output-folder: 'mypdfs' # This is Required field & this folder will be used to store generated PDFs
```