This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Directory containing your TIFF files | |
| TIFF_DIR="/path/to/tiff_files" | |
| # Output PDF file name | |
| OUTPUT_PDF="/path/to/output.pdf" | |
| # Resolution for the output PDF, change according to your needs | |
| RESOLUTION=150 |