Sagewire Logo

Simple image gallery?

14 Message(s) by 8 Author(s) originally posted in php programming


From: Gilles Ganault Date:   Wednesday, October 03, 2007
Hello

I have been googling for a couple of hours, but still have not found what
I need:
- really simple PHP-based image gallery software. Ideally, just a
single file that I just drop into a directory filled with JPG files
- uses eg. GD to generate thumbnails automagically, and saves them
into a sub-directory for the next time (I do not want thumbnails to be
regenerated every time someone views the pictures)
- as an option, supports slideshow
- free/open -source

Any good recommendation?

Thank you.


From: salmobytes Date:   Wednesday, October 03, 2007
wrote in message:

I've been googling for a couple of hours, but still have not found what
I need:
- really simple PHP-based image gallery software.



look for Robopages at phpclasses.org


From: Jim Carlock Date:   Wednesday, October 03, 2007
wrote in message:
I've been googling for a couple of hours, but still have not found
what I need:
- really simple PHP-based image gallery software.



Have you tried the glob() function?
http://us2.php.net/manual/en/function.glob.php

Or the opendir() function?

http://us2.php.net/manual/en/function.opendir.php

The example for the opendir() function:

<?php
$dir = "/etc/php5/";

// Open a known directory, and proceed to read its contents
if (is_dir($dir)) {
if ($dh = opendir($dir)) {
while (($file = readdir($dh)) !== false) {
echo "filename: $file : filetype: " . filetype($dir . $file) . "\n";
}
closedir($dh);
}
}
?>


which prints out:

filename: . : filetype: dir
filename: .. : filetype: dir
filename: apache : filetype: dir
filename: cgi : filetype: dir
filename: cli : filetype: dir

--
Jim Carlock
Swimming Pool, Spa And Water Feature Builders
http://www.aquaticcreationsnc.com/


From: Gilles Ganault Date:   Thursday, October 04, 2007
On Wed, 3 Oct 2007 16:49:23 -0400, "Jim Carlock" <anonymous@xxxxxxxxxxx>
wrote in message:
(snip)

Thanks for the reply, but I'd rather use something that's already
available rather than writing my own.

Features:
- no DB required
- one (or a few) PHP files, ie. really basic footprint
- generates thumbnails, and saves copy in sub-dir to avoid re-creating
thumbnails every time
- basic, no thrill layout template

Thanks.


From: Rik Wasmus Date:   Thursday, October 04, 2007
On Wed, 03 Oct 2007 21:27:45 +0200, Gilles Ganault <nospam@xxxxxxxxxxx>
wrote in message:

Hello
I have been googling for a couple of hours, but still have not found what
I need:
- really simple PHP-based image gallery software. Ideally, just a
single file that I just drop into a directory filled with JPG files
- uses eg. GD to generate thumbnails automagically, and saves them
into a sub-directory for the next time (I do not want thumbnails to be
regenerated every time someone views the pictures)
- as an option, supports slideshow
- free/open-source
Any good recommendation?



Well, 'good'.. OK I guess: http://www.mywebmymail.com/, EasyPhpAlbum. Has
all the requrements you mention.
--
Rik Wasmus


From: James Barrett Date:   Thursday, October 04, 2007
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

wrote in message:
Hello
I have been googling for a couple of hours, but still have not found what
I need:
- really simple PHP-based image gallery software. Ideally, just a
single file that I just drop into a directory filled with JPG files
- uses eg. GD to generate thumbnails automagically, and saves them
into a sub-directory for the next time (I do not want thumbnails to be
regenerated every time someone views the pictures)
- as an option, supports slideshow
- free/open-source
Any good recommendation?
Thank you.http://www.google.com/search?hl=en&q=php+image+gallery&btnG=Google+Search



-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.6 (GNU/Linux)

iD8DBQFHBNhsQuDJiZ/QrH0RAs2OAJsF9F15Zb5HnV0r/R+t2fWePsgJpQCFQHQL
G33yLPcxnrz1pmYrubI+HAU=
=eY+w
-----END PGP SIGNATURE-----


From: Jim Carlock Date:   Thursday, October 04, 2007
I developed the following to display the pictures for a particular
customer...

http://www.aquaticcreationsnc.com/swimming/pool/builder/nc/beanland/

If you're interested in the way that works, I have got the source
code for the layout.

--
Jim Carlock
Swimming Pool, Spa And Water Feature Builders
http://www.aquaticcreationsnc.com/


From: Gilles Ganault Date:   Friday, October 05, 2007
On Thu, 04 Oct 2007 08:44:44 +0200, "Rik Wasmus"
wrote in message:
Well, 'good'.. OK I guess: http://www.mywebmymail.com/, EasyPhpAlbum. Has
all the requrements you mention.



Thanks, just what I was looking for.


From: Sascha Tayefeh Date:   Wednesday, October 10, 2007
Hi Gilles,

I have written one you might be interested in. It is hosted by
Sourceforge, so do not hesitate to follow this link :

http://atomphotoblog.sourceforge.net/

Although consists of a little more than a single file, it is a
lightweight program and, of course, free and open-source.

Sincerly
Sascha Tayefeh


From: Gilles Ganault Date:   Tuesday, October 16, 2007
On Wed, 10 Oct 2007 22:54:34 -0000, Sascha Tayefeh
wrote in message:
http://atomphotoblog.sourceforge.net/
Although consists of a little more than a single file, it is a
lightweight program and, of course, free and open-source.



Thanks, I will give it a shot.


From: pennington.chris Date:   Saturday, October 27, 2007
- really simple PHP-based image gallery software. Ideally, just a
single file that I just drop into a directory filled with JPG files
- uses eg. GD to generate thumbnails automagically, and saves them
into a sub-directory for the next time (I do not want thumbnails to be
regenerated every time someone views the pictures)
- as an option, supports slideshow
- free/open-sourceI have actually been developing an image gallery that may be of some


help to you. I was not going to release this out into the wild yet
because I do not have a site setup for it yet, but I figured I may as
well try to help you out if at all possible.

So any ways, check out this link http://www.virtualconsolemondays.com/img/gallery/lightgallery.php?page=0

If it is what you are looking for the great, if it is missing anything
you should be able to easily add it in.
Also if you need any help with it all just shoot me an email.


From: pennington.chris Date:   Saturday, October 27, 2007
On Oct 27, 5:28 pm, "pennington.ch...@xxxxxxxxxxx"
wrote in message:
> - really simple PHP-based image gallery software. Ideally, just a
> single file that I just drop into a directory filled with JPG files
> - uses eg. GD to generate thumbnails automagically, and saves them
> into a sub-directory for the next time (I do not want thumbnails to be
> regenerated every time someone views the pictures)
> - as an option, supports slideshow
> - free/open-source
I have actually been developing an image gallery that may be of some
help to you. I was not going to release this out into the wild yet
because I do not have a site setup for it yet, but I figured I may as
well try to help you out if at all possible.
So any ways, check out this linkhttp://www.virtualconsolemondays.com/img/gallery/lightgallery.php?page=0
If it is what you are looking for the great, if it is missing anything
you should be able to easily add it in.
Also if you need any help with it all just shoot me an email.



Updated the link to the gallery it is now:

http://downupdesigns.com/lightgallery/lightgallery.php?page=0


From: bill Date:   Sunday, October 28, 2007
wrote in message:
On Oct 27, 5:28 pm, "pennington.ch...@xxxxxxxxxxx"
wrote in message:
- really simple PHP-based image gallery software. Ideally, just a
single file that I just drop into a directory filled with JPG files
- uses eg. GD to generate thumbnails automagically, and saves them
into a sub-directory for the next time (I do not want thumbnails to be
regenerated every time someone views the pictures)
- as an option, supports slideshow
- free/open-source
I have actually been developing an image gallery that may be of some
help to you. I was not going to release this out into the wild yet
because I do not have a site setup for it yet, but I figured I may as
well try to help you out if at all possible.

So any ways, check out this linkhttp://www.virtualconsolemondays.com/img/gallery/lightgallery.php?page=0

If it is what you are looking for the great, if it is missing anything
you should be able to easily add it in.
Also if you need any help with it all just shoot me an email.
Updated the link to the gallery it is now:
http://downupdesigns.com/lightgallery/lightgallery.php?page=0


Very nice.

What is the CC license ?

bill


From: pennington.chris Date:   Sunday, October 28, 2007
wrote in message:
wrote in message:
> On Oct 27, 5:28 pm, "pennington.ch...@xxxxxxxxxxx"
wrote in message:
> - really simple PHP-based image gallery software. Ideally, just a
> single file that I just drop into a directory filled with JPG files
> - uses eg. GD to generate thumbnails automagically, and saves them
> into a sub-directory for the next time (I do not want thumbnails to be
> regenerated every time someone views the pictures)
> - as an option, supports slideshow
> - free/open-source
I have actually been developing an image gallery that may be of some
help to you. I was not going to release this out into the wild yet
because I do not have a site setup for it yet, but I figured I may as
well try to help you out if at all possible.
So any ways, check out this linkhttp://www.virtualconsolemondays.com/img/gallery/lightgallery.php?page=0
If it is what you are looking for the great, if it is missing anything
you should be able to easily add it in.
Also if you need any help with it all just shoot me an email.
> Updated the link to the gallery it is now:
>http://downupdesigns.com/lightgallery/lightgallery.php?page=0
Very nice.
What is the CC license ?
bill



Eh, I have not put that into the code have I? Basically use it how you
want and when I put the license in the code all you've to do is
leave it in there. Free to edit and redistribute with the eventual CC
license intact.



Next Message: Retrieve One Row Of MySQL


Blogs related to Simple image gallery?

Cellphones: Verizon's LG VX10000 Voyager Revealed and Groped (with ...
There's a lot more to tell you, but it's easier to show you at the same time, so I've annotated the hell out of this gallery:. LG's Voyager vs. enV Sizemodo:. From the fact sheet:. The Voyagerâ„¢ by LG from Verizon Wireless ...

Script Gold: 85 good and working scripts php full »
A simple and colorful way of tracking customer requests with an easily configurable customer request form. A sort on customer, status of ticket, date submitted and even agents is available. 73) Advanced Photo/Image Gallery Script This ...

simple viewer flash image gallery
Scripts are provided for PHP, ASP and Cold Fusion. View Automatic via Server-side Script Instructions. * Manual. Manually create a SimpleViewer gallery using a text editor and image editing software of your choice. ...

XML multi-gallery image presentation
XML multi-gallery image presentation XML driven multi-gallery image presentation. - unlimited number of galleries - unlimited number of images per gallery - all data customizable in the xml file - no Flash license needed - no ...

php header include on html? (picture gallery)
Pages are quite simple http://freehelpings.com/freephotos and I am going to use a page generator to make the pages later, using each picture. Then as I advance through this process, I will want to make a thumbnail gallery with link to ...

Vista Picture Gallery Issue
I upgraded XP to Vista in mid april. Since then I have taken many pictures and have never had a problem. About 3 weeks ago the pictures of my sons wedding in June would not open. Since then all the pictures that I added since the April ...


Programming | Sports | Autos

copyright 2006
Valid XHTML 1.0 Transitional