-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathconfig.php
More file actions
22 lines (20 loc) · 840 Bytes
/
config.php
File metadata and controls
22 lines (20 loc) · 840 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
function config() {
$config = array(
"destination" => "/home/differ/production/images/",
"output" => "/home/differ/production/output/",
"profiles" => "/home/differ/production/profiles/",
"java" => "/opt/jdk1.6.0_20/bin/java",
"jhove" => "/home/differ/jhove/bin/JhoveApp.jar",
"jhove_conf" => "/home/differ/jhove/conf/jhove.conf",
"fits" => "/home/differ/fits/fits.sh",
"application_dir" => "/home/differ/production/",
"extensions" => array("jpg", "jpeg", "tiff", "tif", "jp2", "djvu", "jpx", "jpf", "TIF", "TIFF"),
"tmp_dir" => "/tmp/",
"compare_bin" => "/home/differ/projects/compare/compare.sh",
"extract" => array("bitsPerSample", "xSamplingFrequency", "ySamplingFrequency", "iccProfileName",
"colorSpace", "compressionScheme", "exifVersion"),
);
return $config;
}
?>