New and updated version of old code.
This commit is contained in:
31
include/appConfig.php
Normal file
31
include/appConfig.php
Normal file
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
$appConfig['imagesLocation'] = "/mnt/pool1/smb/Scanner/";
|
||||
|
||||
// Defaults for Samsung M2070
|
||||
$appConfig['outputImageResolution'] = array(
|
||||
[ "75", "75 DPI", false ],
|
||||
[ "100", "100 DPI", false ],
|
||||
[ "150", "150 DPI", false ],
|
||||
[ "200", "200 DPI", false ],
|
||||
[ "300", "300 DPI", true ],
|
||||
[ "600", "600 DPI", false ]
|
||||
);
|
||||
$appConfig['outputImageColorDepth'] = array(
|
||||
[ "Lineart", "Lineart", false ],
|
||||
[ "Halftone", "Halftone", false ],
|
||||
[ "Gray", "Gray", true ],
|
||||
[ "Color", "Color", false ]
|
||||
);
|
||||
$appConfig['outputImageFormats'] = array(
|
||||
[ "pnm", "PNM", false ],
|
||||
[ "tiff", "TIFF(Image)", false ],
|
||||
[ "png", "PNG(Image)", true ],
|
||||
[ "jpeg", "JPEG(Image)", false ],
|
||||
[ "pdf", "PDF", false ]
|
||||
);
|
||||
$appConfig['inputPageSizes'] = array(
|
||||
[ "a4", "A4", true ]
|
||||
);
|
||||
|
||||
?>
|
||||
Reference in New Issue
Block a user