*********************************************************************** Version 1.1 FhImage is a simple but yet power image gallery tool. It generate thumbnails of images inside a particular folder (and sub-folders) and show them in an organized way. FhImage is very easy to install, just unzip the package under your image folder! To populate your image gallery, you just need to upload your image files and organize them in folders and sub-folders. You can customize the look of your image gallery by pointing your browser to the "imgconfig/index.php" file after installation. Key Features ------------ * On-the-fly thumbnails generation * Page by page view * Customization on number of rows and columns of images * Customization on thumbnail size Limitations ----------- * support jpg files only * image filename cannot contain %20 (and maybe other strings used for url encoding) System Requirements ------------------- * PHP 4.0 or above * GD 1.8 or above * for GD 1.6 users, you may need to make the following changes in genthumbs.php: look for the following lines: $dst_img = @imagecreatetruecolor($new_w, $new_h); if(!$dst_img) { $dst_img = imagecreate($new_w, $new_h); } and change them to: // $dst_img = @imagecreatetruecolor($new_w, $new_h); // if(!$dst_img) { $dst_img = imagecreate($new_w, $new_h); // } Change logs ----------- version 1.1 * more settings in imgconfig tool * forward, backward link when showing real sized image * showing thumbnails of the 1st image in a sub folder instead of the default fold image (folder.gif) version 1.2 * more options in settings: * can specify thumb height or width (previous version, width only) * 4 different options for folder image: default folder.gif, first gif, first jpg, random jpg. * show full sized image in popup window * default size settings for popup window * bug fix for sorting by filename version 1.2.1 * added option for sorting files in case insensitive way * added settings text, link and visited link colors * added settings to specify the spacing between thumbnails ************************************************************************