| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <?php
- /**
- * 重庆赤晓店信息科技有限公司
- * https://www.chixiaodian.com
- * Copyright (c) 2023 赤店商城 All rights reserved.
- */
- namespace app\librarys\Picqer\Barcode;
- class BarcodeGeneratorHTML extends BarcodeGenerator
- {
- /**
- * Return an HTML representation of barcode.
- * This original version uses pixel based widths and heights. Use Dynamic HTML version for better quality representation.
- *
- * @param string $barcode code to print
- * @param string $type type of barcode
- * @param int $widthFactor Width of a single bar element in pixels.
- * @param int $height Height of a single bar element in pixels.
- * @param string $foregroundColor Foreground color for bar elements as '#333' or 'orange' for example (background is transparent).
- * @return string HTML code.
- */
- public function getBarcode($barcode, $type, int $widthFactor = 2, int $height = 30, string $foregroundColor = 'black')
- {
- $barcodeData = $this->getBarcodeData($barcode, $type);
- $html = '<div style="font-size:0;position:relative;width:' . ($barcodeData->getWidth() * $widthFactor) . 'px;height:' . ($height) . 'px;">' . PHP_EOL;
- $positionHorizontal = 0;
- /** @var BarcodeBar $bar */
- foreach ($barcodeData->getBars() as $bar) {
- $barWidth = round(($bar->getWidth() * $widthFactor), 3);
- $barHeight = round(($bar->getHeight() * $height / $barcodeData->getHeight()), 3);
- if ($bar->isBar() && $barWidth > 0) {
- $positionVertical = round(($bar->getPositionVertical() * $height / $barcodeData->getHeight()), 3);
- // draw a vertical bar
- $html .= '<div style="background-color:' . $foregroundColor . ';width:' . $barWidth . 'px;height:' . $barHeight . 'px;position:absolute;left:' . $positionHorizontal . 'px;top:' . $positionVertical . (($positionVertical > 0) ? 'px' : '') . '"> </div>' . PHP_EOL;
- }
- $positionHorizontal += $barWidth;
- }
- $html .= '</div>' . PHP_EOL;
- return $html;
- }
- }
|