Skip to content

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
}
Note: printable area border drawn as a visual aid

3x1 thermal label template

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
}
Note: printable area borders drawn as a visual aid

Avery 8160 label template

Avery 8160 label template


Next Steps