ZSK Web API

ZSK Web API

Monograms

POST

This is the section for the text definition.

The maximal number of text definitions is limited to 9.

"Text":

Defines the text.

The maximal length is limited to 200 characters.

  • FontFamily
    • Name of the font. Get the supported fonts by calling GetFontList


Parameters

Parameter Type Description Required
Text string contains one line of text Yes
FontFamily string name of the font Yes
FontSizeMM double height of the font in mm Yes
TextStitchParameter string name of the used text parameter Yes
UsedNeedle int used needle (color) Yes
HorizontalAlignment int horizontal text alignment. 0 = left; 1 = middle, 2 = right. No

Example

	"Monograms": [
		{
			"Text": [
				"Line 1"
			],
			"FontFamily": "Times New Roman",
			"FontSizeMM": 10.0,
                        "HorizontalAlignment": 0,
			"UsedNeedle": 1,
			"TextStitchParameter": "Premium"
		},
		{
			"Text": [
				"Line 2"
			],
			"FontFamily": "Arial",
			"FontSizeMM": 12.0,
                        "HorizontalAlignment": 0,
			"UsedNeedle": 3,
			"TextStitchParameter": "Premium"
		}
	],