########################### # Simple photo album 1.0 # Greg Sunderland # This program reads the jpg files in a directory # and displays them. If there is a captions.txt # file, it will read the captions from that file # and print them under the image. Otherwise it will # print the file name under the image. # The format of the captions.txt file is as follows: # the image file name, followed by 2 colons, then the # caption. Each entry needs to be on a single line # # imagename::caption text. # # for example: # pic1.jpg::This is the first pic. # pic2.jpg::This is the second pic. # pic3.jpg::This is the third pic. # It will also read a header.txt and insert that before the images # and a footer.txt file will be inserted after the images. # If a style.css file exists it will use that file for the styles. # otherwise it'll use a default style. echo "\n"; echo "
\n"; #################################### # check if style.css exists # and if so use that. # Otherwise use the default style. if (file_exists("style.css")) { echo "\n"; } else { echo "\n"; } echo "\n"; echo "\n"; ##################################################### # check if a header file exists and open it if so. if (file_exists("header.txt")) { if ($file=fopen("header.txt","r")) { fpassthru($file); } } ###################################################### #check if a captions file exists and open it if so. if (file_exists("captions.txt")) { $captions=1; $file=fopen("captions.txt","r"); while ($baseline=fgets($file,512)) { $line=split("::",$baseline); $captionsText[$line[0]]=$line[1]; } } else { $captions=0; } $dir=opendir("."); while ($file=readdir($dir)) { if(eregi (".+\.jpg$",$file)) { $size=GetImageSize("$file"); $width1=$size[0]+10; $width2=$size[0]+20; echo "