You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

16 lines
450 B

  1. <?php
  2. function baseCustomSetup($barcode, $get) {
  3. $font_dir = '..' . DIRECTORY_SEPARATOR . 'font';
  4. if (isset($get['thickness'])) {
  5. $barcode->setThickness(max(9, min(90, intval($get['thickness']))));
  6. }
  7. $font = 0;
  8. if ($get['font_family'] !== '0' && intval($get['font_size']) >= 1) {
  9. $font = new BCGFontFile($font_dir . '/' . $get['font_family'], intval($get['font_size']));
  10. }
  11. $barcode->setFont($font);
  12. }
  13. ?>