Personal tools

Gallery3:Modules:randimg

From Gallery Codex

Contents

External Image Block

Display a random image on a external page

Description

This tiny module just provides a small interface to be able to fetch a small block of HTML containing a random image. This forum thread may have more information: http://gallery.menalto.com/node/93574. Thanks to user danneh3826 on the Gallery 3 forum thread for this module for many enhancements and improvements to code and HTML.

Installation

The source files can be found here:
http://code.nkinka.de/gitweb?p=randimg.git;a=summary

Get the latest version

Or to download a version at a specific commit, click the "snapshot" link to the far right of each commit message at the source URL above.

Alternatively, you can use git to clone it:

$ git clone git://code.nkinka.de/randimg.git

The downloaded file will be a tar-gzipped archive named something similar to randimg-HEAD-873eec3.tar.gz. When you extract it, the resulting directory will also be named like randimg-HEAD-873eec3. It probably makes sense to rename that to simply randimg. Drop that directory into the modules/ subdirectory of your Gallery3 installation, then activate the module: Login -> Admin -> Modules. Check the box next to the module. Click update at the bottom of the page.

To see an example of this module in action visit the following URL. Each time you reload the page a new image should appear:

http://natha.nkinka.de

Usage

Paste the following code into any webpage (where PHP is available, of course):

     <?php
         $imglink = file_get_contents("http://EXAMPLE.COM/gallery3/index.php/randimg", "r");
         echo "$imglink";
     ?>

The following optional query parameters are accepted:

  • size: accepted values are:
    • thumb (default if no size is specified)
    • resize
    • fullsize
  • width: a width in pixels which will be applied via CSS.

Examples:

  • http://EXAMPLE.COM/gallery3/index.php/randimg?size=resize
  • http://EXAMPLE.COM/gallery3/index.php/randimg?size=fullsize&width=600

Don't forget to edit the URL for the proper location/domain.

advertisements