ImageMagick powered image stitcher for manga or longstrip usage.
Python 3.10+ and ImageMagick 7.0+ need to be installed.
This script can be installed by running pip install git+https://github.com/ShoHabby/file-stitcher
stitcher [-v|-h] [-a] [-r] [-o %output_name%] [*files]
-
-v
or-h
is required and must always be the first parameter passed to the script. Both options are mutually exclusive.-v
will stitch files vertically, from top to bottom, and-h
will stitch files horizontally, from right to left (manga reading order). -
-a
Means that the script will look through subfolders of the directory the script was called from, find images within them, stitch them according to settings, and output them to the directory the script was called from. While using this parameter, files should not be specified. By default, the output files name is the name of the directory they were merged from. -
-r
Will reverse the order of the stitching to bottom to top for vertical, and left to right for horizontal. -
-o
If using-a
, allows specifying an output prefix for subfolder merges. If-a
is not used, specifies the name of the output file when manually specifying the files to stitch. The output name does not need to contain the file extension. If not specified, the output name will be the concatenation of all the input file names. -
files
When not using-a
, files must be specified last. At least two files must be specified, but there is no upper limit. The file paths may be absolute or relative to the directory the script is called from. If using-a
, files must be ommited. By default, the name of the merged file is the concatenation of the names of the input files.