https://github.com/israel-dryer/tiff-merge-split
A merge and split utility for TIFF files
https://github.com/israel-dryer/tiff-merge-split
Last synced: 7 months ago
JSON representation
A merge and split utility for TIFF files
- Host: GitHub
- URL: https://github.com/israel-dryer/tiff-merge-split
- Owner: israel-dryer
- License: mit
- Created: 2020-07-16T21:58:24.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-09-03T00:00:21.000Z (about 4 years ago)
- Last Synced: 2025-02-01T02:41:28.199Z (9 months ago)
- Language: Python
- Size: 43 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# TIFF-Merge-Split
A simple utility for merging and splitting TIFF files.
## Compiling the program with PyInstaller
- clone this repository `git clone https://github.com/israel-dryer/TIFF-Merge-Split.git`
- install the requirements from _requirements.txt_
- install pyinstaller `python -m pip install pyinstaller`
- change the 'pathex' variable in the spec file to your file path location.
- from the project folder, run the command `pyinstaller pyinstaller.spec`The single file is located in the project path in the `dist` folder.
## Using the program
### Merging multiple TIFF files into a single TIFF file
- Click **[Open]** and select the files that you wish to merge into a single TIFF file.
- Select the **[merge to single file]** option in the “Conversion Settings”.
- Enter an Output file name. By default, the program uses the file name _converted_YYYYMMDD.tif_ and saves to the current working directory.
- Click **[Convert]** to merge and save all selected images.
### Splitting a TIFF file into multiple images
- Click **[Open]** and select a single file that you wish to split to multiple TIFF files.
- Select the **[split to multi-files]** option in the “Conversion Settings”.
- Click **[Convert]** to split the TIFF file into multiple images.NOTE: The split images will output to the same directory as the source image and will add the suffix “_0.tif”, “_1.tif”, etc.
### Arrange files
You may want to save the files in a different order. You can manipulate the row order by clicking on row and pressing the **[page up]** or **[page down]** buttons on your keyboard to move the row up or down in the list. You can also press the **[delete]** button on your keyboard to remove the row altogether.### Starting over
Click the **[Clear List]** button to remove all rows from the list and start again.