1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
|
<?php /* $Id: README.php,v 1.7 2004/03/04 16:58:17 jenst Exp $ */ ?>
<html><head><title>How to create new frames</title></head>
<body bgcolor="#DDAAAA">
<!--
TL TTL TT TTR TR
+----------------+
LLT | | RRT
| |
| |
LL | IMAGE | RR
| |
| |
LLB | | RRB
+----------------+
BL BBL BB BBR BR
-->
Eventually this will contain full instructions for building your own files. In the meantime, here's a quick diagram of where the diffent images go, and something to test<p>
<center>
<table border="1">
<tr>
<td>TL</td>
<td><table border="1"><tr>
<td width="30">TTL</td>
<td width="140" align="center">TT</td>
<td width="30">TTR</td>
</tr></table></td>
<td>TR</td>
</tr>
<tr>
<td><table border="1">
<tr><td height="30">LLT</td></tr>
<tr><td height="140">LL</td></tr>
<tr><td height="30">LLB</td></tr>
</table></td>
<td height="200" width="200" valign="center" align="center">IMAGE</td>
<td><table border="1">
<tr><td height="30">RRT</td></tr>
<tr><td height="140">RR</td></tr>
<tr><td height="30">RRB</td></tr>
</table></td>
</tr>
<tr>
<td>BL</td>
<td><table border="1"><tr>
<td width="30">BBL</td>
<td width="140" align="center">BB</td>
<td width="30">BBR</td>
</tr></table></td>
<td>BR</td>
</tr>
</table>
</center>
To test you frames, just insert the name of your frame were indicated below.
<?php
include (dirname(dirname(dirname(__FILE__))) . '/config.php');
include (dirname(dirname(dirname(__FILE__))) . '/util.php');
$gallery->html_wrap['frame'] = "polaroid"; /*** PUT YOUR FRAME DIR HERE ***/
$gallery->html_wrap['borderColor'] = "#AAAAFF";
$gallery->html_wrap['borderWidth'] = 0;
$gallery->html_wrap['imageWidth'] = 300;
$gallery->html_wrap['imageHeight'] = 200;
$gallery->html_wrap['imageHref'] = null;
$gallery->html_wrap['imageTag'] = '<img src="../../images/bar.gif" width="300" height="200">';
error_reporting(E_ALL);
?>
<br><br><br>
<center>
<?php include "../inline_imagewrap.inc"; ?>
<br><BR>
<?php print "Your frame is called <b>$name</b> and you've described it as <b>$description</b>" ?>
</center>
</body>
</html>
|