Label Templates
Introduction¶
A template defines the overall layout and physical structure of the label, including its dimensions, margins, padding, and page arrangement such as rows, columns, and spacing.
- Dimensions (height, width)
- Margins
- Padding
- Page arrangement (not applicable to thermal labels)
- Rows
- Columns
- Gaps
- Page margins
- Row/column spacing
Note: All template measurements are defined in inches.
Examples¶
Here is an example template for a 3"x1" thermal label, with 1/8" margins:
{
"labelHeightIn": 1,
"labelPaddingXIn": 0.125,
"labelPaddingYIn": 0.125,
"labelWidthIn": 3,
"numColumns": 1,
"numRows": 1,
"pageMarginLeftIn": 0,
"pageMarginTopIn": 0,
"pagesizeXIn": 3,
"pagesizeYIn": 1,
"xGapIn": 0,
"yGapIn": 0
}
3x1 thermal label template
Here is an example template for an 8.5"x11" sheet of Avery 8160 labels (3 columns and 10 rows, 30 total), with 1/16" margins:
{
"labelHeightIn": 1,
"labelPaddingXIn": 0.0625,
"labelPaddingYIn": 0.0625,
"labelWidthIn": 2.625,
"numColumns": 3,
"numRows": 10,
"pageMarginLeftIn": 0.1875,
"pageMarginTopIn": 0.5,
"pagesizeXIn": 8.5,
"pagesizeYIn": 11,
"xGapIn": 0.125,
"yGapIn": 0
}
Avery 8160 label template
Next Steps¶
- Learn how to create label layouts
- See how templates and layouts come together in Generating Label PDFs
- Work through the Tutorial to wire this up end-to-end
- Configure your printer using Printing Label PDFs
- Start your free 30-day T3+ trial

