• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Need a program to generate thumbnails/tables w/links for a web page

FortFunFoSho

Golden Member
Anyone have any program suggestions that can make this ever so tedious process easy?

I have roughly 100 pics I need to put up, but I don't want to make thumbs for each.

Thanks in advance!
 
install ImageMagick
mkdir thumbs
for i in *.[jpg|jpeg|png]; do convert -resize <width>x<height> $i thumbs/$i; done

As far as a gallery that does this stuff for you, there are tons. Check freshmeat.net, hotscripts.com.
 
on a separate note: BingBongWongFooey: Have you ever gotten an ImageMagick .dll (or equivalent *nix library) successfully compiled? I really need one for a small project I want to do and can't seem to get it in either gcc or MSVC++. 🙁
 
This is what I use and I actually shell out the $$ for the full version because I got sick of manually editing all the pages to remove their advertisement. The free version works just fine, but they put "created by arles image creator" all over the pages.
 
Originally posted by: onelin0
on a separate note: BingBongWongFooey: Have you ever gotten an ImageMagick .dll (or equivalent *nix library) successfully compiled? I really need one for a small project I want to do and can't seem to get it in either gcc or MSVC++. 🙁

Yeah sure, pretty simple... (and you sure aren't going to be able to compile it in vc++ 😉)
 
Back
Top