https://github.com/jmkim/pdf2jpg-bash
Convert PDF file with multiple pages into JPEG images
https://github.com/jmkim/pdf2jpg-bash
bash bash-script jpg pdf pdf2jpg
Last synced: about 1 month ago
JSON representation
Convert PDF file with multiple pages into JPEG images
- Host: GitHub
- URL: https://github.com/jmkim/pdf2jpg-bash
- Owner: jmkim
- Created: 2018-09-04T12:56:10.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-09-04T12:58:35.000Z (almost 8 years ago)
- Last Synced: 2025-10-24T13:02:14.028Z (8 months ago)
- Topics: bash, bash-script, jpg, pdf, pdf2jpg
- Language: Shell
- Homepage: https://github.com/jmkim/pdf2jpg-bash
- Size: 1.95 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# pdf2jpg-bash
Convert PDF file with multiple pages into JPEG images.
This bash script will convert PDF file into JPEG images (.jpg).
A PDF file with multiple pages will separated as multiple JPEG image files.
## Usage
```bash
$ pdf2jpg-bash [input file path] [output directory path]
```
## Prerequisites
- [ImageMagick](https://www.imagemagick.org) or [GraphicsMagick](http://www.graphicsmagick.org)
## License
- Expat
```
Copyright 2018 Jongmin Kim
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
to deal in the Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included
in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
IN THE SOFTWARE.
```