Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sergeiown/batch_pdf_compressor
This Windows batch processing script provides an efficient way to compress PDF files using different compression levels and options. The main purpose is to conveniently batch compress all PDF files in the selected directory as well as in all subdirectories.
https://github.com/sergeiown/batch_pdf_compressor
batch-script compressor ghostscript installer language-detection pdf pdfcompressor powershell windows-forms
Last synced: 3 days ago
JSON representation
This Windows batch processing script provides an efficient way to compress PDF files using different compression levels and options. The main purpose is to conveniently batch compress all PDF files in the selected directory as well as in all subdirectories.
- Host: GitHub
- URL: https://github.com/sergeiown/batch_pdf_compressor
- Owner: sergeiown
- License: mit
- Created: 2023-05-24T09:51:52.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-23T15:07:46.000Z (22 days ago)
- Last Synced: 2024-10-23T18:29:42.603Z (21 days ago)
- Topics: batch-script, compressor, ghostscript, installer, language-detection, pdf, pdfcompressor, powershell, windows-forms
- Language: Batchfile
- Homepage: https://github.com/sergeiown/batch_PDF_compressor/releases
- Size: 21.9 MB
- Stars: 10
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
## [Batch PDF compressor](https://github.com/sergeiown/batch_PDF_compressor/releases)
[![batch_PDF_compressor](https://github.com/user-attachments/assets/a7ba8320-69a0-4dae-9dbf-20c98220777c)](https://github.com/sergeiown/batch_PDF_compressor/releases)- [Structure](#structure)
- [Requirements](#requirements)
- [Script Functionality](#script-functionality)
- [Usage](#usage)
- [License](#license)| This Windows batch processing script provides an efficient way to compress PDF files using different compression levels and options. It utilizes the [Ghostscript](https://www.ghostscript.com/) to perform operations on PDF files. The main purpose is to conveniently batch compress all PDF files in the selected directory as well as in all subdirectories. | ![image](https://github.com/sergeiown/batch_PDF_compressor/assets/112722061/4023a1b7-5b51-4f55-91a6-7b34245f0af4) |
| :--- | ---: |### [Structure](#batch-pdf-compressor)
```mermaid
graph RL;
style A font-weight:bold;
A[batch_PDF_compressor]A -->|call| B1[date_time]
A -->|call| B2[ghostscript]
A -->|call| B3[directory]
A -->|call| B4[options]
A -->|call| B5[compression]
A -->|call| B6[language]
A -->|call| B7[information]
A -->|optional_call| Testssubgraph Modules
B1[date_time]
B2[ghostscript]
B3[directory]
B4[options]
B5[compression]
B6[language]
B7[information]
B2 -->|call| B8[installer]
endsubgraph Tests
C1[language_manual]
endsubgraph Messages
D1[messages_english]
D2[messages_ukrainian]
D3[messages_russian]
endB6 -->|data reading| D1
B6 -->|data reading| D2
B6 -->|data reading| D3
C1 -->|data reading| D1
C1 -->|data reading| D2
C1 -->|data reading| D3
```### [Requirements](#batch-pdf-compressor)
1. **Windows-based system.\***
2. **[Ghostscript](https://www.ghostscript.com/).\*\***| \* \- *Tested on Windows 10 and Windows 11 operating systems, both x86 and x64 architectures. The scripts have not been tested on earlier versions.* | [![windows_compatibility](https://github.com/user-attachments/assets/db2b5487-b5bf-45d9-8948-48bb88162f17)](https://en.wikipedia.org/wiki/List_of_Microsoft_Windows_versions) |
| :--- | :---: || \* \- *If [Ghostscript](https://www.ghostscript.com/) is not installed, the latest release will be detected and offered to install when Batch PDF Compressor is launched.* | ![image](https://github.com/sergeiown/batch_PDF_compressor/assets/112722061/ed8ea024-9edf-43b4-829b-925daa2c9071) |
| :--- | :---: |### [Script Functionality](#batch-pdf-compressor)
The script offers the following features:
1. Automatic selection of English, Ukrainian, or Russian according to the system language using universal UTF-8 (support for external message files has been added).
2. Selection the path to the directory with PDF files to be compressed using the windows.Forms.FolderBrowserDialog. With path validation and allowance for 3 false addresses or bounces.
3. Selection of compression level: low, medium, high, ultra.
4. Choose to delete or save original PDF files.
5. The script processes all PDF files within the specified directory and its subdirectories.
6. Displays progress of file processing and compression.
7. Upon completion, provides an overview of script execution, including the number of processed files, sizes before and after compression, and the compression ratio.
8. Additionally, the script checks the system for the presence of Ghostscript before execution and maintains a detailed log file for each compression operation.| ![image](https://github.com/sergeiown/batch_PDF_compressor/assets/112722061/d01cc59a-68e3-40ae-acbd-68d9529d07ec) | ![image](https://github.com/sergeiown/batch_PDF_compressor/assets/112722061/8c874426-ffab-4d7e-8749-0e70e52fbdb2) |
| :---: | :---: |### [Usage](#batch-pdf-compressor)
1. **[Use the executable installer](https://github.com/sergeiown/batch_PDF_compressor/releases)** *(best practice)* or clone the project and run the `batch_PDF_compressor.bat` script *(If you are using a batch script, make sure that the text files with messages are available in the `/messages` directory and the modules are available in the `/modules` directory)*.
2. The required language will be selected automatically according to the system settings.
3. Select the directory containing the PDF files you want to compress. The script will "look" at the lower levels and process the PDFs in the subdirectories on its own.
4. Select the compression level (1-4) corresponding to the provided options.
5. Choose whether to delete or keep the original PDF files.
6. After completion you can find the a log file containing information about processed files and compression results at `%UserProfile%\Documents` with the name `batch_PDF_compressor.log`.### [License](#batch-pdf-compressor)
[Copyright (c) 2023 - 2024 Serhii I. Myshko](https://github.com/sergeiown/compress_PDF/blob/main/LICENSE.md)