Your IP : 216.73.217.77


Current Path : /home/users/unlimited/www/mpos.codeskitter.site/vendor/ageekdev/laravel-barcode/src/
Upload File :
Current File : /home/users/unlimited/www/mpos.codeskitter.site/vendor/ageekdev/laravel-barcode/src/BarcodeBar.php

<?php

namespace AgeekDev\Barcode;

class BarcodeBar
{
    protected int $width;

    protected int $height;

    protected int $positionVertical;

    protected int $type;

    public const TYPE_BAR = 1;

    public const TYPE_SPACING = 0;

    public function __construct(int $width, int $height, bool $drawBar = true, int $positionVertical = 0)
    {
        $this->width = $width;
        $this->height = $height;
        $this->positionVertical = $positionVertical;
        $this->type = $drawBar ? self::TYPE_BAR : self::TYPE_SPACING;
    }

    /**
     * Get the width.
     */
    public function getWidth(): int
    {
        return $this->width;
    }

    /**
     * Get the height.
     */
    public function getHeight(): int
    {
        return $this->height;
    }

    /**
     * Get position vertical.
     */
    public function getPositionVertical(): int
    {
        return $this->positionVertical;
    }

    /**
     *  Bar or not.
     */
    public function isBar(): bool
    {
        return $this->type === self::TYPE_BAR;
    }
}