Search found 1 match

by liucscai
2013-11-01T16:38:43-07:00
Forum: Users
Topic: DOS batch for labeling .jpgs with date from EXIF
Replies: 8
Views: 15401

Re: DOS batch for labeling .jpgs with date from EXIF

Thanks for the great job.
Just two little corrections to support file name with spaces (in "for" loop I added "delim=" and in "convert" command I replaced %1 with "%~1"):

@echo off

set ptsize=70

set x=0
set y=0

set /a dx1=%x%+1
set /a dy1=%y%+1

set /a dx2=%x%+2
set /a dy2=%y%+2

set ...