Search found 2 matches

by Angstony
2017-05-17T13:48:47-07:00
Forum: Users
Topic: Batch Pair Montage
Replies: 1
Views: 2712

Re: Batch Pair Montage

Okay, after doing some research on looping through files and a bit of trial and error I've managed to come up with this:

@echo off
setlocal enabledelayedexpansion

for %%F in (Left*.jpg) do (
set oldName=%%F
set pairName=Right !oldName:~5!
set newName=Frame !oldName:~5!
echo Processing ...
by Angstony
2017-05-17T12:11:07-07:00
Forum: Users
Topic: Batch Pair Montage
Replies: 1
Views: 2712

Batch Pair Montage

Hi,

I have a bunch of images the exact same size that I need to pair together with a 10px gap and a 5px border. They're all in the same folder and named appropriately: Left 0001.jpg, Right 0001.jpg, Left 0002.jpg, Right 0002.jpg, … etc.

After a lot of trial and error I've found that the 'montage ...