InstantASP Community Forums
Home       Members    Calendar    Who's On
Welcome Guest ( Login | Register )
        



.NET photo gallery component Expand / Collapse
Author
Message
Posted 11/05/2005 09:44:53


Supreme Being

Supreme BeingSupreme BeingSupreme BeingSupreme BeingSupreme BeingSupreme BeingSupreme BeingSupreme 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
Post #6559
Posted 11/05/2005 10:35:05


Supreme Being

Supreme BeingSupreme BeingSupreme BeingSupreme BeingSupreme BeingSupreme BeingSupreme BeingSupreme 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
Post #6564
Posted 11/05/2005 10:40:13
Supreme Being

Supreme BeingSupreme BeingSupreme BeingSupreme BeingSupreme BeingSupreme BeingSupreme BeingSupreme Being

Group: Moderators
Last Login: 14/10/2006 01:27:14
Posts: 276, Visits: 3,858
Check out nGallery: http://www.ngallery.org/

Its free and .NET



Jimmy Stuart

Post #6566
Posted 13/05/2005 10:08:16


Supreme Being

Supreme BeingSupreme BeingSupreme BeingSupreme BeingSupreme BeingSupreme BeingSupreme BeingSupreme Being

Group: Customers
Last Login: 22/09/2008 15:59:25
Posts: 693, Visits: 2,418
Thanks guys...  I appreciate the input..


..:: Bare ::..
http://www.livingformetal.com
Post #6613
Posted 22/05/2005 09:39:55


IF.NET 4.2 Coming Soon

IF.NET 4.2 Coming SoonIF.NET 4.2 Coming SoonIF.NET 4.2 Coming SoonIF.NET 4.2 Coming SoonIF.NET 4.2 Coming SoonIF.NET 4.2 Coming SoonIF.NET 4.2 Coming SoonIF.NET 4.2 Coming Soon

Group: Administrators
Last Login: 2 days ago @ 16:29:04
Posts: 1,956, Visits: 3,018
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/

  Post Attachments 
InstantGallery.zip (1,090 views, 13.75 KB)
Post #6764
Posted 22/05/2005 09:47:58


IF.NET 4.2 Coming Soon

IF.NET 4.2 Coming SoonIF.NET 4.2 Coming SoonIF.NET 4.2 Coming SoonIF.NET 4.2 Coming SoonIF.NET 4.2 Coming SoonIF.NET 4.2 Coming SoonIF.NET 4.2 Coming SoonIF.NET 4.2 Coming Soon

Group: Administrators
Last Login: 2 days ago @ 16:29:04
Posts: 1,956, Visits: 3,018
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/

Post #6765
Posted 22/05/2005 09:49:54


IF.NET 4.2 Coming Soon

IF.NET 4.2 Coming SoonIF.NET 4.2 Coming SoonIF.NET 4.2 Coming SoonIF.NET 4.2 Coming SoonIF.NET 4.2 Coming SoonIF.NET 4.2 Coming SoonIF.NET 4.2 Coming SoonIF.NET 4.2 Coming Soon

Group: Administrators
Last Login: 2 days ago @ 16:29:04
Posts: 1,956, Visits: 3,018
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/

Post #6766
Posted 08/06/2005 18:43:41
Forum Newbie

Forum NewbieForum NewbieForum NewbieForum NewbieForum NewbieForum NewbieForum NewbieForum Newbie

Group: Forum Members
Last Login: 30/06/2005 14:14:11
Posts: 4, Visits: 5
take a look at http://www.boatquest.com/All/Manufacturer/Category/Length/9707/Feet/USD/1/boats_pictures.aspx for instance, we use http://aspupload.com/ for uploading, http://www.aspjpeg.com/ for resizing, but page itself has custom coding. If you are inte