LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   any good thumbnail (website) creators? (https://www.linuxquestions.org/questions/linux-software-2/any-good-thumbnail-website-creators-259254/)

darkleaf 11-25-2004 01:36 PM

any good thumbnail (website) creators?
 
I'm searching one cause I'll get a load of pics I don't want to resize all myself.

david_ross 11-25-2004 01:47 PM

Try gallery:
http://gallery.sf.net

Or Yappa-ng:
http://freshmeat.net/redir/yappa-ng/..._main_eng.html

If you just want to resize them then using ImageMagic's convert utility can be quick and easy.

HenchmenResourc 11-25-2004 01:59 PM

What if any GUI do you use, the best OSS program If used is the konqueror file browser in KDE, you just browse to the folder with the images then hit ctrl+I and it ill open a dialogue you enter a few setting and it makes a web page.

Here is and example I made up, note the links don't work sine I have not uploaded the imaged yet but it will give you an idea.

http://henchmenresources.tripod.com/desktops.html

darkleaf 11-25-2004 02:01 PM

Thanks for the suggestions! Does imagemagick support converting whole directories. There aren't many free hosts that don't have too many ads (as in you can't find your site anymore) with php support anymore I think :( But well you get what you pay for but the problem is that it's a free site and I can't host it at home.

darkleaf 11-25-2004 02:10 PM

Quote:

Originally posted by HenchmenResourc
What if any GUI do you use, the best OSS program If used is the konqueror file browser in KDE, you just browse to the folder with the images then hit ctrl+I and it ill open a dialogue you enter a few setting and it makes a web page.

Here is and example I made up, note the links don't work sine I have not uploaded the imaged yet but it will give you an idea.

http://henchmenresources.tripod.com/desktops.html

I only have xfce4 and fluxbox. Is it plain html then I just might download konqueror just for this.

HenchmenResourc 11-25-2004 02:25 PM

It writes it as plane html and as long as you have the right libraries installed konqueror should run fine in eather of those GUIs

david_ross 11-25-2004 02:33 PM

Quote:

Originally posted by darkleaf
Thanks for the suggestions! Does imagemagick support converting whole directories.
Not directly but you can do something like this:
mkdir thumbs
IFS="
"
for file in *;do convert "$file" -resize 100x100 "thumbs/$file";done

That assumes you want to resize to a 100x100 image obviosuly.

darkleaf 11-25-2004 02:35 PM

Thanks!


All times are GMT -5. The time now is 10:42 AM.