User Control Panel
Advertisements

HELP US, HELP YOU!

Thumbnail Gallery

 
Post new topic   Reply to topic    Bot Depot Forum Index -> General Chat & Discussion
View unanswered posts
Author Message
Tony_shu
God Like
God Like


Joined: 12 Nov 2003
Posts: 624

Reputation: 42.9Reputation: 42.9Reputation: 42.9Reputation: 42.9

PostPosted: Sat Mar 06, 2004 10:33 am    Post subject: Reply with quote

Hey...I'm making most of my pages on my website in perl, and was wondering if there was a way (code/module/etc.) that would allow me to create a "thumbnail" gallery in perl? I already have a way to list all the individual images in a "download-type" list where each image is listed (but not displayed).
_________________
Anthony Arslan
@-Squared Enterprises
MacroHard Corporation
Back to top
Keenie
Almost An Agent
Almost An Agent


Joined: 31 Oct 2003
Posts: 1071

Reputation: 52.4

PostPosted: Sat Mar 06, 2004 10:49 am    Post subject: Reply with quote

just make it do like
Code:
<a href = "image.gif"><img src = "image.gif" height = "64" width = "64"></a>


or something, so then it will show them all as a small picture, but when you click on it, it should display the full picture.

edit: so maybe something like this

Code:
my $dir = "./images/";<br />opendir(DIR, $dir);<br />while (my $file = readdir(DIR)) <br />{ <br />    print "<a href = $file><img src = $file height = \"64\" width = \"64\"></a>";<br />}<br />close (DIR);


then you could add fancy tables and such to make it align them good or
at least
Back to top
UnShavenGod
Young One
Young One


Joined: 26 Feb 2004
Posts: 99

Reputation: 28.7Reputation: 28.7Reputation: 28.7

PostPosted: Sat Mar 06, 2004 4:22 pm    Post subject: Reply with quote

There's an EXCELLENT group of perl modules out there called image magick ... I think it's freeware, not sure. I used it for other things, but I remember reading lots of stuff about how it can automate lots of thumbnailig garbage.

Can also download executables I think.
Back to top
Display posts from previous:   
Post new topic   Reply to topic    Bot Depot Forum Index -> General Chat & Discussion All times are GMT
Page 1 of 1

 



Protected by phpBB Security phpBB-TweakS
phpBB Security Has Blocked 9 Exploit Attempts.
Antispam Captcha Mod by phpbb-security.com
Powered by phpBB © 2001, 2005 phpBB Group