Search found 3 matches

by jdev21
2014-11-11T09:11:38-07:00
Forum: Users
Topic: Combine only first 6 images of folder (limit output to single file)
Replies: 5
Views: 2554

Re: Combine only first 6 images of folder (limit output to single file)

Thank you for all of your help so far. I have been trying to play with a for loop but cannot seem to get it to work properly. Any advice on what I am doing wrong? Here is what I have so far: @echo off setlocal for /R %%G in (.) do ( set /a "n=0, limit=6" >"testfile1.txt" ( for /f "eol=: delims=" %%F ...
by jdev21
2014-11-10T18:42:08-07:00
Forum: Users
Topic: Combine only first 6 images of folder (limit output to single file)
Replies: 5
Views: 2554

Re: Combine only first 6 images of folder (limit output to single file)

Thank you!

Do you know if it would be possible to get this to run through all of this to run through all subfolders of current so there is an index sheet created for every one?
by jdev21
2014-11-10T13:55:48-07:00
Forum: Users
Topic: Combine only first 6 images of folder (limit output to single file)
Replies: 5
Views: 2554

Combine only first 6 images of folder (limit output to single file)

Hello, I am looking to create an index page for each of my folders that contain images. I would like on the index page to be the first 6 images of the directory combined to a 1200x1000 (3 columns 2 rows) image. I am trying to do this in windows prompt. Is it possible? I have found that I can use ...