File: config.inc

package info (click to toggle)
phpix 2.0.2-7
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 268 kB
  • ctags: 85
  • sloc: php: 555; makefile: 45; sh: 36
file content (24 lines) | stat: -rw-r--r-- 681 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?
## ImageTool can either be "gd" or "im" (ImageMagick) 
## ImageMagick does better quality scaling but may be 
## slower on some machines.  Take your pick
$ImageTool		= "im";
$convert		= "/usr/bin/convert";
$pix_base		= "albums";
$dyn_base		= "generated";
## Define $sitehome if you wish to have a link to your main site included in
## the navigation
$sitehome		= "/";
## show rotation controls
$show_rotation_controls  = true;
## EXIF Support requires PHP4 with exif support compiled
$show_exif      = 0;
$items_per_page	= 20;
$display_cols	= 4;
$default_size	= 640;
$thumb_size     = 120;
$thumb_border	= 0;
$viewsizes      = array(512, 640, 800, 1024, 1280, "Original");
?>