Bethesda's epic sci-fi RPG is here, and it's a big one. From shipbuilding to exploring the surface of Mars, our thoughts so far.
Starfield Review... In Progress
The first trailer for Grand Theft Auto 6 is finally here.
Grand Theft Auto 6 Trailer
We take an in-depth look at Avatar: Frontiers of Pandora and tell you why it should be heavily on your radar!
Avatar: Frontiers of Pandora - a Deep-Dive into its Potential
Range-wise, the ROG Rapture GT6 is phenomenal, and it's ideal for all gaming and non-gaming-related tasks.
ASUS ROG Rapture GT6 WiFi 6 Mesh System Review
Batch Generating Thumbnails for Images
trog
AGN Admin
Brisbane, Queensland
10251 posts
A few people lately have been asking ways to generate thumbnails for images, so I thought I'd share the nice, easy, freeware way that I use.

First of all, you'll need ImageMagick, a neat collection of commandline tools available for a variety of operating systems. You can download the Windows binary here (sourced from the mirror sites, but it is not an "official" mirror). The filename says 'win2k' but I assume it will run on all win32 systems.

This installer contains a bunch of different tools, which you can explore at your own pace.

If you just want to make thumbnails, the easiest way to do it is thus:

1) Install ImageMagick (I install it into c:\utils\imagemagick and will use this path for the examples)
2) Create a batch file called makethumbs.bat with the following contents:
@echo off
@dir /b *.jpg > listing.txt
@dir /b *.jpeg > listing.txt
@dir /b *.gif > listing.txt
@dir /b *.png > listing.txt
@for /f %%a in (listing.txt) do copy %%a TN_%%a
@for %%a in (TN_*.*) do c:\utils\imagemagick\mogrify -geometry x96 %%a
@del listing.txt

3) Put all the images you want into a directory
4) Copy the batch file into the directory
5) Double click the batch file (or, if you are comfortable with DOS, simply put the batch file in the path and type 'makethumbs.bat' from the command line after changing to the directory in which the images are).

This is obviously a very simple method (it will only get the jpg/jpeg etc files listed there, its not recursive, it sucks) but should suffice for most people. I've got a few other toys I use to do it (some PHP scripts) but this way all you need is imageMagick and voila.

12:18pm 31/01/03 Permalink
system
Internet
--
12:18pm 31/01/03 Permalink
VRBones
Brisbane, Queensland
712 posts
a ... batch ... file ??
12:22pm 31/01/03 Permalink
trog
AGN Admin
Brisbane, Queensland
10255 posts
There are prolly heaps of other freeware programmes that are actually better for this, but this is what I use cuz I live on the command line a lot of the time.
01:17pm 31/01/03 Permalink
verticalseafoodtaco
Wynnum, Queensland
901 posts
thanks a lot, im going to have to make a lot of thumbnails soon and this will come in handy
01:19pm 31/01/03 Permalink
StreX
Brisbane, Queensland
3115 posts
photoshop duzeeet the best (ofcourse).
01:28pm 31/01/03 Permalink
asshat
Brisbane, Queensland
5373 posts
it takes less time to do say 10imgs this whay then it would with photoshop
01:31pm 31/01/03 Permalink
mongie
Brisbane, Queensland
344 posts
yeah, but trog, we want it realtime on the ausgamers hosting service

:)
03:21pm 31/01/03 Permalink
trog
AGN Admin
Brisbane, Queensland
10257 posts
Yeh, that sounds like a valuable usage of server CPU time
05:17pm 31/01/03 Permalink
Magnus
Queensland
8 posts

Course we'd appreciate it greatly :D
04:12pm 27/03/03 Permalink
qmass
Queensland
5282 posts
And for the lazy there is ACDsee. Its way better than anything but its not free... Thats the only problem. There are ways around that of course (like buying it)
04:25pm 27/03/03 Permalink
whoop
Brisbane, Queensland
2529 posts
[Q] last time I looked (which was ages ago) there was a free version of ACDSee, it was kinda lacking in features, not sure if it had any thumbnail thing. Or maybe it wasn't free, maybe I was just using the shareware version or something. I remember there being an ACDSee32 and an ACDSee, the one with the 32 was free/shareware and the other one you had to buy....or some such crap
06:53pm 27/03/03 Permalink
Dan
Canada
5525 posts
Care to describe a quick and easy way to do it in photoshop Streckles?

command line and batch files are silly :/
06:57pm 27/03/03 Permalink
whoop
Brisbane, Queensland
2532 posts
dan: file -> automate -> picture gallery
07:06pm 27/03/03 Permalink
system
Internet
--
07:06pm 27/03/03 Permalink
AusGamers Forums
Show: per page
1
This thread is archived and cannot be replied to.