Closed Thread Icon

Preserved Topic: cataloging software for images (Page 1 of 1) Pages that link to <a href="https://ozoneasylum.com/backlink?for=20963" title="Pages that link to Preserved Topic: cataloging software for images (Page 1 of 1)" rel="nofollow" >Preserved Topic: cataloging software for images <span class="small">(Page 1 of 1)</span>\

 
Boudga
Maniac (V) Mad Scientist

From: Jacks raging bile duct....
Insane since: Mar 2000

posted posted 04-17-2001 17:46

Has anyone used the cataloging software for images that is available on the market? I have well over 100,000 images and Digital Photos and I have a difficult time finding the images I need easily when I need them. I would like to create some sort of DB for this purpose.

Anyone?

WarMage
Maniac (V) Mad Scientist

From: Rochester, New York, USA
Insane since: May 2000

posted posted 04-17-2001 18:01

Well, an easy way would be to use PHP or Perl to tie into a MySQL database. You can set the perl/php program up to trace through your directory structure and to add each picture to the database, or at least a link to the picture. From there you could create a system for management. That would not be too hard a task, a simple query system, and bang you have a free cataloging system, that you can tweak to all your delight. If you don't want to do the query system you could go about making the perl instead of adding to a database make it add the stuff to a flat text file or an html file so that you could access the pictures that way.

Broach this question in the server side forum and I am sure you would get a ton of responses.

-mage-

kat
Paranoid (IV) Inmate

From: memphis TN
Insane since: Apr 2001

posted posted 04-17-2001 18:38

inside the page that holds all the thumbnails/links:

code:
<html>
<head>
<title>thumbnail gallery</title>
<SCRIPT>
function popUp(page,PWidth,PHeight,id,scroll) {
eval("showImg"+id+"=window.open('"+page+"','showImg"+id+"','toolbar=0,location=0,status=0,scrollbars="+scroll+",menubars=0,resizable=0,width="+PWidth+",height="+PHeight+"')")
eval("showImg"+id+".window.moveTo((screen.width/2)-(PWidth/2),(screen.height/2)-(PHeight/2))")
}
</SCRIPT>
</head>



link:

code:
<a href="javascript :popUp('img.php?src=der.gif',WIDTH,HEIGHT,ID,SCROLL[0-or-1])">img1!</a>


^ that would be something like popUp('img.php?src=der.gif',340,240,01,0)

inside img.php:

code:
<html>
<head>
<title>Gallery</title>
</head>
<body topmargin="0" leftmargin="0" marginheight="0" marginwidth="0">
<table width="100%" height="100%" cellpadding="0" cellspacing="0" border="0">
<tr><td valign="center">
<img src="<? echo $src; ?>">
</td></tr>
</table>
</body>
</html>




[edit = stupid smilies! ]

[This message has been edited by kat (edited 04-17-2001).]

Boudga
Maniac (V) Mad Scientist

From: Jacks raging bile duct....
Insane since: Mar 2000

posted posted 04-17-2001 19:25

thanks Kat and Warmage!

mr.maX
Maniac (V) Mad Scientist

From: Belgrade, Serbia
Insane since: Sep 2000

posted posted 04-17-2001 20:04

Maybe you can find something interesting here: http://www.ozoneasylum.com/Forum12/HTML/000020.html

DL-44
Maniac (V) Inmate

From: under the bed
Insane since: Feb 2000

posted posted 04-17-2001 22:37

Thumbs Plus from Cerious Software ( http://www.cerious.com/ )

couldn't live without it....it's an exceptional program! Check it out

JKMabry
Maniac (V) Inmate

From: out of a sleepy funk
Insane since: Aug 2000

posted posted 04-23-2001 23:50

DL - Any quirks at all with that software? I've got a somewhat temperamental machine and I hate to try software that I've never heard of before on it.

I've seen you recommend it before but I can't find the thread to check out the rest of the recommendations. I'm gonna finish diggin archives now...

« BackwardsOnwards »

Show Forum Drop Down Menu