I have any image files:
test_1.png
test_2.png
test_3.png
test_4.png
I execute:
Code: Select all
montage "test_[0-3].png" "output.tif"
---------------------------
Next I rename files to:
.test_1.png
.test_2.png
.test_3.png
.test_4.png
I execute:
Code: Select all
montage ".test_[0-3].png" "output.tif"
---------------------------montage.exe: UnableToOpenBlob `.test_[0-3].png': No such file or directory @ error/blob.c/OpenBlob/2695.
montage.exe: UnableToOpenFile `.test_[0-3].png' @ error/png.c/ReadPNGImage/3913.
montage.exe: MissingAnImageFilename `output.tif' @ error/montage.c/MontageImageCommand/1790.
Next, I execute:
Code: Select all
montage ".test_1.png" ".test_2.png" ".test_3.png" ".test_4.png" "output.tif"
Note: it works if the period is located in the middle of the file name, just not the start.