Search found 5 matches

by calder
2013-11-12T21:35:39-07:00
Forum: Users
Topic: Lookup tables
Replies: 8
Views: 2762

Re: Lookup tables

Cheers....

Paul
by calder
2013-11-12T16:27:02-07:00
Forum: Users
Topic: Lookup tables
Replies: 8
Views: 2762

Re: Lookup tables

Thank you.

Paul
by calder
2013-11-12T14:24:35-07:00
Forum: Users
Topic: Lookup tables
Replies: 8
Views: 2762

Re: Lookup tables

Ah, nothing like answering your own questions :shock: xxxxx.txt is a renamed .csv file, so.... @echo off setlocal enabledelayedexpansion for /f "tokens=1,2 delims=," %%a in ('type xxxxx.txt') do ( set line=%%a echo !line! set line=%%b echo !line! ) gets me the two variables. Now to figure out the ...
by calder
2013-11-12T12:50:36-07:00
Forum: Users
Topic: Lookup tables
Replies: 8
Views: 2762

Re: Lookup tables

Thanks for the replies.

Yep, I've figured out annotate, but reading the external file has me foxed! A few hints would be helpful...

I was not sure of the best version - the one I eventually chose was 6.8.7.5-Q16 on Windows 8.1. Was that a reasonable one?

Paul
by calder
2013-11-12T03:23:39-07:00
Forum: Users
Topic: Lookup tables
Replies: 8
Views: 2762

Lookup tables

I'm very new to ImageMagick (Windows), and am making good progress with the things I need to use it for. There is one item I can't resolve. I have 1300 pictures that I want to annotate with an individual ID. The IDs are in a table, and have the filename in an adjacent column. I'd like to be able to ...