Files
saneAdmin/include/appConfig.php

31 lines
758 B
PHP

<?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 ]
);
?>