|
|
|
Supreme Being
      
Group: Customers
Last Login: 22/09/2008 15:59:25
Posts: 693,
Visits: 2,418
|
|
| Hi all, I'm looking for a good .NET photo gallery component, that I can use on several band related websites. I would like to be able to upload the pics thru some sort of control panel & have the thumbnails automatically generated. Hopefully the image categories could also be generated through an online control panel. I would also like this component to be skinnable, so I can get the right look, from it. Any ideas or suggestions would be greatly appreciated. Thanks
..:: Bare ::.. http://www.livingformetal.com
|
|
|
|
|
Supreme Being
      
Group: Customers
Last Login: 19/11/2007 22:07:59
Posts: 161,
Visits: 2,483
|
|
| Hi Bare. I've built something very similar to what you're looking for. In fact, it's ridiculously easy to use. I built it to plug into BV Software, but could easily modify it so that it works for any site. Let me know if you're interested. You simply FTP your original images to a directory, and the system takes care of the rest for you. You can find all the details here: http://www.bvgear.com/productinfo.aspx?productid=8-imagegallery
Al Bsharah Free Stores - http://www.aholics.com
|
|
|
|
|
Supreme Being
      
Group: Moderators
Last Login: 14/10/2006 01:27:14
Posts: 276,
Visits: 3,858
|
|
|
|
|
|
Supreme Being
      
Group: Customers
Last Login: 22/09/2008 15:59:25
Posts: 693,
Visits: 2,418
|
|
|
|
|
|
IF.NET 4.2 Coming Soon
      
Group: Administrators
Last Login: 01/10/2008 19:02:02
Posts: 1,950,
Visits: 3,006
|
|
| Hi Bare, I did develop something many moons ago, it will basically generate a gallery from a directory of images. I've attached the code, this was written in 2002 so please forgive the code. The quality may not be what you expect after seeing the IF.NET v4.0 code. Hope this helps
 Kindest Regards,
Ryan Healey Director / Developer
Explore our products... http://demos.instantasp.co.uk/
|
|
|
|
|
IF.NET 4.2 Coming Soon
      
Group: Administrators
Last Login: 01/10/2008 19:02:02
Posts: 1,950,
Visits: 3,006
|
|
Managed to find some old installation notes, not sure if they will help, you may wish to go with a more developed, supported solution such as Al's suggestion, the above basic code only supports a single gallery, just throught it may be useful, it's been so long since i've even looked at this i can't quite remember exactly how this works  To create your first gallery extract all the contents of the archive into a directory of your website. By default an images directory is provided with the application. This is the default location the indexer will look for your image gallery pictures. You can choose a custom name for the images folder if required. Once your happy with the store location for your images simply drop your images within this folder.
Before you can index your image folder modifications to the variables within the InstantGallery.aspx.vb file will be required. The configuration section within this file is clearly defined and additional instructions and comments are provided within the code.
You will need to modify the following variables within the configuration section before you can run the indexer to generate your gallery. These variables tell the application where to find and save your images.
ImageFolder Required. String value containing the full psychical path to the folder that will contain your image gallery images. This is the folder you will drop your images into before you run the InstantGallery.NET indexer. The indexer will prefix your original images filenames with unique identifiers to ensure consistency with the pre-generated thumbnail graphics. Example: C:\inetpub\wwwroot\instantgallery\images\
ThumbNailFolder Required. String value containing the full psychical path to the folder that will contain your image galleries thumbnails images and logfile. It's often a good idea to place the thumbnail folder within the ImageFolder. The InstantGallery.NET indexer will automatically generate the thumbnail folder the first time it's ran. Example: C:\inetpub\wwwroot\instantgallery\images\thumbs\
URLToImageFolder Required. String value containing the full URI to the image folder that will contain your images. This is basically the URL to the ImageFolder location variable set above. Example: http://www.yourdomain.com/instantgallery/images/
URLToThumbFolder Required. String value containing the full URI to the thumbnail folder that will contain the InstantGallery.NET logfile and dynamically generated thumbnail images. This is basically the URL to the ThumbNailFolder location variable set above. Example: http://www.yourdomain.com/instantgallery/images/thumbs/
At this point you will have a folder containing the images to be indexed. You will have also modified the configuration variables to tell the application where to find the images folder and where to save thumbnails. With everything set-up you can now run the indexer. The indexer will search your ImagesFolder, pre-generate the thumbnails, gather image information, generate unique file identifiers and save the gallery information to a logfile within your ThumbNailFolder.
To run the indexer enter the address of the InstantGallery.NET application into your web browser and append the following querystring "?index=true" to the end of the URL.
This URL will look something like "http://<yourdomain>/<instantgalleryfolder>/default.aspx?index=true"
The indexer can easily handle upto 600 images at once. If you extend the script timeout property on your server or within the code the indexer could handle upto 2,000 images before your server returns a script-timeout error.
The indexer should be ran every time additional images are added to the images folder. The indexer will only index new images and will skip images that have already been indexed.
 Kindest Regards,
Ryan Healey Director / Developer
Explore our products... http://demos.instantasp.co.uk/
|
|
|
|
|
IF.NET 4.2 Coming Soon
      
Group: Administrators
Last Login: 01/10/2008 19:02:02
Posts: 1,950,
Visits: 3,006
|
|
Aholics.com (5/11/2005)
Hi Bare. I've built something very similar to what you're looking for. In fact, it's ridiculously easy to use. I built it to plug into BV Software, but could easily modify it so that it works for any site. Let me know if you're interested. You simply FTP your original images to a directory, and the system takes care of the rest for you. You can find all the details here: http://www.bvgear.com/productinfo.aspx?productid=8-imagegallery Nice
 Kindest Regards,
Ryan Healey Director / Developer
Explore our products... http://demos.instantasp.co.uk/
|
|
|
|
|
Forum Newbie
      
Group: Forum Members
Last Login: 30/06/2005 14:14:11
Posts: 4,
Visits: 5
|
|
| | |