From c3d0382b883a03158190fee67fe003962531e691 Mon Sep 17 00:00:00 2001 From: webbrain-one <295484252+webbrain-one@users.noreply.github.com> Date: Tue, 4 Aug 2026 23:59:41 +0300 Subject: [PATCH] Add new print formats Add formats from Pimaco table. Closes #5 --- lib/formats.js | 66 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) diff --git a/lib/formats.js b/lib/formats.js index 9948cd1..9ec5899 100644 --- a/lib/formats.js +++ b/lib/formats.js @@ -140,5 +140,71 @@ module.exports = { left: 7.2, right: 0 } + }, + // PIMACO 6428 + pimaco_6428: { + cols: [ + 5.85, + 110.75 + ], + rows: [ + 12.70, + 38.10, + 63.50, + 88.90, + 114.30, + 139.70, + 165.10, + 190.50, + 215.90, + 241.30 + ], + maxTagsInPage: 20, + tagSize: { + width: 99.10, + height: 23.80, + align: 'center' + }, + paperSize: [210.00, 297.00], + paperMargins: { + top: 12.70, + bottom: 12.70, + left: 5.85, + right: 5.85 + } + }, + // PIMACO 6370 + pimaco_6370: { + cols: [ + 11.25, + 108.75 + ], + rows: [ + 12.70, + 34.50, + 56.30, + 78.10, + 99.90, + 121.70, + 143.50, + 165.30, + 187.10, + 208.90, + 230.70, + 252.50 + ], + maxTagsInPage: 24, + tagSize: { + width: 93.70, + height: 19.80, + align: 'center' + }, + paperSize: [210.00, 297.00], + paperMargins: { + top: 12.70, + bottom: 12.70, + left: 11.25, + right: 11.25 + } } }