Your IP : 216.73.216.48


Current Path : /hdd/hdd11/www/vlevski/enter/config/
Upload File :
Current File : /hdd/hdd11/www/vlevski/enter/config/BCGBarcode1D.php

<?php
function baseCustomSetup($barcode, $get) {
    $font_dir = '..' . DIRECTORY_SEPARATOR . 'font';

    if (isset($get['thickness'])) {
        $barcode->setThickness(max(9, min(90, intval($get['thickness']))));
    }

    $font = 0;
    if ($get['font_family'] !== '0' && intval($get['font_size']) >= 1) {
        $font = new BCGFontFile($font_dir . '/' . $get['font_family'], intval($get['font_size']));
    }

    $barcode->setFont($font);
}
?>