mirror of
https://github.com/snipe/snipe-it.git
synced 2025-02-21 03:15:45 -08:00
108 lines
4 KiB
PHP
108 lines
4 KiB
PHP
<?php
|
|
|
|
namespace App\Models\Labels\Tapes\Brother;
|
|
|
|
class TZe_24mm_D extends TZe_24mm
|
|
{
|
|
private const BARCODE_MARGIN = 1.40;
|
|
private const TAG_SIZE = 2.80;
|
|
private const TITLE_SIZE = 2.80;
|
|
private const TITLE_MARGIN = 0.50;
|
|
private const LABEL_SIZE = 2.50;
|
|
private const LABEL_MARGIN = - 0.35;
|
|
private const FIELD_SIZE = 2.50;
|
|
private const FIELD_MARGIN = 0.35;
|
|
private const BARCODE1D_SIZE = 3.00; // Size for the C128 barcode at bottom
|
|
|
|
public function getUnit() { return 'mm'; }
|
|
public function getWidth() { return 65.0; }
|
|
public function getSupportAssetTag() { return true; }
|
|
public function getSupport1DBarcode() { return true; }
|
|
public function getSupport2DBarcode() { return true; }
|
|
public function getSupportFields() { return 3; }
|
|
public function getSupportLogo() { return false; }
|
|
public function getSupportTitle() { return true; }
|
|
|
|
public function preparePDF($pdf) {}
|
|
|
|
public function write($pdf, $record) {
|
|
$pa = $this->getPrintableArea();
|
|
|
|
$currentX = $pa->x1;
|
|
$currentY = $pa->y1;
|
|
$usableWidth = $pa->w;
|
|
|
|
// Reserve space at bottom for 1D barcode
|
|
$usableHeight = $pa->h - self::BARCODE1D_SIZE;
|
|
$barcodeSize = $usableHeight - self::TAG_SIZE;
|
|
|
|
if ($record->has('barcode2d')) {
|
|
static::writeText(
|
|
$pdf, $record->get('tag'),
|
|
$pa->x1, $pa->y2 - self::TAG_SIZE - self::BARCODE1D_SIZE,
|
|
'freemono', 'b', self::TAG_SIZE, 'C',
|
|
$barcodeSize, self::TAG_SIZE, true, 0
|
|
);
|
|
static::write2DBarcode(
|
|
$pdf, $record->get('barcode2d')->content, $record->get('barcode2d')->type,
|
|
$currentX, $currentY,
|
|
$barcodeSize, $barcodeSize
|
|
);
|
|
$currentX += $barcodeSize + self::BARCODE_MARGIN;
|
|
$usableWidth -= $barcodeSize + self::BARCODE_MARGIN;
|
|
} else {
|
|
static::writeText(
|
|
$pdf, $record->get('tag'),
|
|
$pa->x1, $pa->y2 - self::TAG_SIZE - self::BARCODE1D_SIZE,
|
|
'freemono', 'b', self::TAG_SIZE, 'R',
|
|
$usableWidth, self::TAG_SIZE, true, 0
|
|
);
|
|
}
|
|
|
|
if ($record->has('title')) {
|
|
static::writeText(
|
|
$pdf, $record->get('title'),
|
|
$currentX, $currentY,
|
|
'freesans', '', self::TITLE_SIZE, 'L',
|
|
$usableWidth, self::TITLE_SIZE, true, 0
|
|
);
|
|
$currentY += self::TITLE_SIZE + self::TITLE_MARGIN;
|
|
}
|
|
|
|
foreach ($record->get('fields') as $field) {
|
|
// Write label and value on the same line
|
|
// Calculate label width with proportional character spacing
|
|
$labelWidth = $pdf->GetStringWidth($field['label'], 'freemono', '', self::LABEL_SIZE);
|
|
$charCount = strlen($field['label']);
|
|
$spacingPerChar = 0.5;
|
|
$totalSpacing = $charCount * $spacingPerChar;
|
|
$adjustedWidth = $labelWidth + $totalSpacing;
|
|
|
|
static::writeText(
|
|
$pdf, $field['label'],
|
|
$currentX, $currentY,
|
|
'freemono', 'B', self::LABEL_SIZE, 'L',
|
|
$adjustedWidth, self::LABEL_SIZE, true, 0, $spacingPerChar
|
|
);
|
|
|
|
static::writeText(
|
|
$pdf, $field['value'],
|
|
$currentX + $adjustedWidth + 2, $currentY,
|
|
'freemono', 'B', self::FIELD_SIZE, 'L',
|
|
$usableWidth - $adjustedWidth - 2, self::FIELD_SIZE, true, 0, 0.3
|
|
);
|
|
|
|
$currentY += max(self::LABEL_SIZE, self::FIELD_SIZE) + self::FIELD_MARGIN;
|
|
}
|
|
|
|
// Add C128 barcode at the bottom
|
|
if ($record->has('barcode1d')) {
|
|
static::write1DBarcode(
|
|
$pdf, $record->get('barcode1d')->content, $record->get('barcode1d')->type,
|
|
$pa->x1, $pa->y2 - self::BARCODE1D_SIZE,
|
|
$pa->w, self::BARCODE1D_SIZE
|
|
);
|
|
}
|
|
}
|
|
}
|