Reference of the JSON Interactive Ink eXchange format (JIIX) version 3.
JIIX is an exchange format to export, share and re-import the internal semantics of the Interactive Ink model.
As such, it is designed to host information about:
When exporting JIIX from iink SDK, depending on the use case, you may sometimes want to only retrieve part of this information. This is managed at configuration level, via the following keys:
export.jiix.bounding-box
- Export item bounding boxesexport.jiix.strokes
- Export ink strokesexport.jiix.glyphs
- Export converted glyphsexport.jiix.primitives
- Export shape primitives (lines, circles, etc.)export.jiix.style
- Export detailed styling information (color, width, font, etc.)export.jiix.text.chars
- Export detailed information about the characters in the text interpretationexport.jiix.text.words
- Export detailed information about the words in the text interpretationexport.jiix.deprecated.text.linebreaks
- Export detailed information about the line breaks within a text.export.jiix.text.structure
- Export detailed information about the text layout structure for Text blocks.For more information about these parameters, including default values, refer to the configuration reference.
The version of the format that the current document conforms to is given by the version
property of the root of the JSON document
(as the root of the document corresponds to the root block of the exposed content block hierarchy, the version property belongs
to this root block).
Description | Content | Note |
---|---|---|
Version of the JIIX format | A string identifying the current iteration of the format | This property was added with iink SDK 1.3. JIIX documents before 1.3 do not have this property |
For example, if the root block is a “Text” block, we will have something like:
{
"version": "3",
"type": "Text",
"bounding-box": { ... },
"label": "Hello world!",
"words": [ ... ],
"id": "MainBlock"
}
Units are not explicitly provided in a JIIX document. They shall be understood as model units, that is to say millimeters. The actual rendering of a JIIX document on the screen will then depend on the dpi and any other parameter (zoom, offset) used to configure the renderer.
JIIX documents are organized as a hierarchy of JSON objects (called “Blocks” in this page) that mirrors the block hierarchy of a content
part. Each object has a specific type
string property identifying it as a text block, a diagram block, a math node, etc. and defining
the block semantics.
For example, a simple diagram may aggregate a text label and a rectangular node:
{
"type": "Diagram",
"elements": [ {
"type": "Text",
...
}, {
"type": "Node",
"kind": "rectangle",
...
} ],
...
}
This semantics, in turn defines how sub-blocks are aggregated. For example :
Diagram
block will host an array of “Diagram Item” blocks under its elements
property.Math
block will host an array of “Math Node” blocks under its expressions
property.Container
block will host its sub-blocks under a children
property.Whatever their types, all blocks share the following common properties:
Property | Description | Content | Note |
---|---|---|---|
id |
Block unique reference in the context of the document | A string | |
bounding-box |
Extent of the block |
x , y , width , height - 4 numerical values defining a rectangle which upper-left corner is positioned at coordinates (x , y ) and of size (width , height ) |
Present in the JIIX export when export.jiix.bounding-box configuration is true
|
For example, a simple drawing block can be represented as:
{
"type": "Drawing",
"id": "MainBlock",
"bounding-box": {
"x": 20.43125,
"y": 31.272942,
"width": 9.9375,
"height": 8.9725456
},
...
}
Other potential properties depend on the type
of the block. Refer to the “blocks” section for more details.
Block content is described using items, which represent what is actually visible when rendering the model.
Items are used to describe the content of blocks in terms of ink, glyphs or shape primitives.
Like blocks, items share common properties:
Property | Description | Content |
---|---|---|
type |
Type of the item |
stroke , line , arc or glyph
|
id |
Item unique reference in the context of the document. | A string |
A stroke
item represents a standalone portion of ink, that is to say the trajectory of a writing tool between a pointer down and the
corresponding pointer up.
It has the following specific properties:
Property | Description | Content |
---|---|---|
timestamp |
Precise date and time of the pointer down | Example: "2018-11-28 09:31:43.893000"
|
X |
X coordinates of the different points of the stroke, ordered from pointer down to pointer up | An array of numbers |
Y |
Y coordinates of the different points of the stroke, ordered from pointer down to pointer up | An array of numbers. |
F |
Force (a.k.a pressure) of the different points of the stroke, ordered from pointer down to pointer up | An array of numbers |
T |
Time offset of the different points of the stroke in ms relatively to the timestamp of the stroke, ordered from pointer down to pointer up | An array of numbers |
Example:
{
"timestamp": "2021-08-31 15:14:39.652000",
"X": [ 58.5874977, 58.7666626, 58.7666626, 58.7666626, 58.7666626, 58.7666626, 58.9458313, 58.9458313,
59.1249962, 59.4833298, 59.8416634, 60.0208321, 60.0208321, 60.0208321, 60.0208321, 60.0208321,
60.1999969, 60.1999969, 60.3791618, 60.5583305, 60.5583305 ],
"Y": [ 33.0518494, 33.0518494, 33.5907364, 34.1296272, 34.8481445, 35.5666618, 36.6444397, 37.5425873,
39.159256, 40.7759209, 42.033329, 43.4703674, 44.7277718, 46.3444405, 47.4222183, 48.6796265,
49.9370308, 50.4759216, 51.0148087, 51.0148087, 51.0148087 ],
"F": [ 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0 ],
"T": [ 0, 14, 30, 38, 46, 54, 62, 70,
78, 86, 94, 102, 110, 118, 126, 134,
142, 150, 158, 166, 206 ],
"type": "stroke",
"id": "0000010001002900ff00"
}
X
, Y
, T
and F
must be strictly identical.
A line
item represents a converted line primitive, for instance the edge of a polygon.
It has the following specific properties:
Property | Description | Content |
---|---|---|
timestamp |
Timestamp of the stroke that was converted into this primitive. | Example: "2018-11-29 10:03:05.980000" . |
x1 |
X coordinate of the first point defining the line | A number |
y1 |
Y coordinate of the first point defining the line | A number |
x2 |
X coordinate of the second point defining the line | A number |
y2 |
Y coordinate of the second point defining the line | A number |
startDecoration |
Decoration of a “line” start point |
arrow-head in case an arrow head is present, none when no decoration |
endDecoration |
Decoration of a “line” end point |
arrow-head in case an arrow head is present, none when no decoration |
Example:
{
"type": "line",
"timestamp": "2021-09-07 09:04:39.162000",
"x1": 24.8770332,
"y1": 19.7303886,
"x2": 66.5452576,
"y2": 19.7303886,
"startDecoration": "none",
"endDecoration": "none",
"id": "0000010001000300ff00"
}
An arc
item represents a converted arc primitive, for instance a curved connector in a diagram or a portion of an ellipse.
It has the following specific properties:
Property | Description | Content |
---|---|---|
timestamp |
Timestamp of the stroke that was converted into this primitive. | Example: "2018-11-29 10:03:05.980000"
|
cx |
X coordinate of the arc center | A number |
cy |
Y coordinate of the arc center | A number |
rx |
x-axis or semi-major radius | A number (must be positive) |
ry |
y-axis or semi-minor radius | A number (must be positive) |
phi |
x-axis rotation angle | A number |
startAngle |
Start angle (prior to stretch and rotate) | A number |
sweepAngle |
Sweep angle (prior to stretch and rotate) | A number |
startDecoration |
Decoration of an “arc” item start point |
arrow-head in case an arrow head is present, none when no decoration |
endDecoration |
Decoration of an “arc” item end point |
arrow-head in case an arrow head is present, none when no decoration |
Example:
{
"type": "arc",
"timestamp": "2021-09-06 13:56:41.110000",
"cx": 167.432373,
"cy": 105.229813,
"rx": 30.8068428,
"ry": 7.45266199,
"phi": 0,
"startAngle": 0,
"sweepAngle": 6.28318548,
"startDecoration": "none",
"endDecoration": "none",
"id": "0000300001008900ff00"
}
A glyph
item represents a converted typeset character.
It has the following specific properties:
Property | Description | Content | Note |
---|---|---|---|
timestamp |
Timestamp of the stroke that was converted into this glyph | Example: "2018-11-28 13:37:03.514000"
|
|
label |
Character represented by the glyph | Example: "B"
|
|
baseline |
Baseline position | A number | Optional (not used for the glyphs present in a math context) |
x-height |
x height | A number | Optional (not used for the glyphs present in a math context) |
square-root-ratio |
Horizontal ratio between the size of the glyph and the “V” shape part of the square root | A number | Only for square roots |
left-side-bearing |
Glyph left side bearing | A number | |
right-side-bearing |
Glyph right side bearing | A number |
Example:
{
"type": "glyph",
"timestamp": "2021-09-06 13:55:37.298000",
"label": "2",
"bounding-box": {
"x": 39.1022644,
"y": 27.6022339,
"width": 1.92954254,
"height": 3.19965172
}
Text interpreted by iink SDK is represented by word and character objects as part of a Text block.
A word object represents the recognition of a word made by the MyScript engine. Note that to get such interpretation in JIIX export, your
need to set the export.jiix.text.words
configuration option to true
.
It has the following properties:
Property | Description | Content | Note |
---|---|---|---|
label |
Top recognition result associated with this word | A string | |
reflow-label |
Reflow behavior when the word is a linefeed (i.e. with a label = \n ) |
Possible values are “” (empty) and “ “ (one space) depending on whether a space should be inserted when removing this linefeed for reflow. | |
candidates |
List of recognition candidates associated with this word | An array of strings | |
bounding-box |
Extent of the word. |
x , y , width , height - 4 numerical values defining a rectangle which upper-left corner is positioned at coordinates (x , y ) and of size (width , height ). |
Present in the JIIX export when export.jiix.bounding-box configuration is true . |
items |
Ink and/or glyphs composing the word. | An array of stroke and/or glyph items | Strokes only present in JIIX export when export.jiix.strokes is configured to true , glyphs only present when export.jiix.glyphs is configured to true
|
first-char |
Index of the first character contained in this word. | An integer, representing the index of a character object in the Text block. | Only present in the JIIX export when export.jiix.text.chars or export.jiix.style are configured to true
|
last-char |
Index of the last character contained in this word. | An integer, representing the index of a character object in the Text block | Only present in the JIIX export when export.jiix.text.chars or export.jiix.style are configured to true
|
Examples:
hello
:{
"label": "hello",
"candidates": [ "hello", "hells", "hellor", "helle", "kello" ],
"first-char": 0,
"last-char": 4,
"bounding-box": {... },
"items": [ ... ]
}
\n
:{
"label": "\n",
"reflow-label": " "
}
A character object represents the recognition of a character made by the MyScript engine. Note that to get such interpretation in JIIX
export, your need to set the export.jiix.text.chars
configuration option to true
.
It has the following properties:
Property | Description | Content | Note |
---|---|---|---|
label |
Recognition result associated with this char | A string | |
candidates |
List of recognition candidates associated with this character | An array of strings | |
grid |
Highlight area associated with this char | An array of 4 points, each containing x and y floating points coordinates |
|
bounding-box |
Extent of the character |
x , y , width , height - 4 numerical values defining a rectangle which upper-left corner is positioned at coordinates (x , y ) and of size (width , height ) |
Present in the JIIX export when export.jiix.bounding-box configuration is true
|
items |
Ink and/or glyphs composing the character | An array of stroke and/or glyph items | Strokes are only present in JIIX export when export.jiix.strokes is configured to true , glyphs are only present when export.jiix.glyphs is configured to true
|
word |
Index of the word that contains this char | An integer | only present in the JIIX export when export.jiix.text.words is configuredto true
|
Example:
{
"label": "h",
"candidates": [ "h", "k", "b", "H" ],
"word": 0,
"grid": [ {
"x": 18.875834,
"y": 31.736748
}, {
"x": 25.118258,
"y": 31.736748
}, {
"x": 25.118258,
"y": 44.957951
}, {
"x": 18.875834,
"y": 44.957951
} ],
"bounding-box": { ... },
"items": [ ... ]
}
The JIIX format can contain styling information. These encompass:
If you are exporting content, you need to set the export.jiix.style
configuration key to true
to get style
information.
Blocks like Drawing and text
/non-text
raw content items can be seen as an ordered collection
of strokes. Such a collection can be styled via the definition of “item spans”, each span associating a specific style to a range of items.
Item spans have the following properties:
Property | Description | Content |
---|---|---|
first-item |
Index of the first item in the span | A number (positive or null) |
last-item |
Index of the last item in the span | A number (positive or null) |
class |
Name of the CSS class attached to the items in the span | A string |
style |
Inline CSS style that “overrides” any default style | A string |
For example, if we write 2 strokes with pen style class set to “greenThickPen” then 2 more strokes with no pen style class but pen style set to “color : #FF324233”, we obtain something like:
{
"first-item": 0,
"last-item": 1,
"class": "greenThickPen"
}
and
{
"first-item": 2,
"last-item": 3,
"style": "color: #FF324233"
}
Note that an item may be contain both class
and style
indications, or none of them if default styling applies.
Text blocks can be seen as an ordered collection of characters. Such a collection can be styled via the definition of “character spans”, each span associating a specific style to a range of characters.
Item spans have the following properties:
Property | Description | Content |
---|---|---|
first-char |
Index in the text of the first character in the span | A number (positive or null) |
last-char |
Index in the text of the last character in the span | A number (positive or null) |
class |
Name of the CSS class attached to the characters in the span | A string |
style |
Inline CSS style that “overrides” any default style | A string |
For example, text underlined by a gesture may get the following style:
{
"first-char": 0,
"last-char": 12,
"class": "text-emphasis1",
"style": "color: #000000FF; -myscript-text-decoration-color: #000000FF; -myscript-text-decoration-background-color: #FFED2666"
}
Blocks like math and diagram nodes, as well as diagram connectors are independently styled.
They can directly have the following properties:
Property | Description | Content |
---|---|---|
class |
Name of the CSS class attached to the node | A string |
style |
Inline CSS style that “overrides” any default style for the node | A string |
For example, a math node can be styled as follows:
{
"type": "number",
"id": "math/170",
"label": "3",
"value": 3,
"items": [ ... ],
"bounding-box": { ... },
"class": "greenThickPen"
}
This section lists all available blocks of the hierarchy, their properties and particularities, if any.
A block of type Container
groups children blocks together.
It has the following specific property:
Property | Description | Content |
---|---|---|
children |
List of blocks within this container block | An array of blocks |
For example, in the JIIX export of a “Text Document” part composed of two paragraphs of text, each paragraph will correspond to a text block and both will be grouped as the children of a same container block:
{
"type": "Container",
"id": "MainBlock",
"bounding-box": { ... },
"children": [ {
"type": "Text",
...
}, {
"type": "Text",
...
} ],
...
}
A block of type Diagram
groups together the different internal blocks of an individual diagram.
It has the following specific property:
Property | Description | Content |
---|---|---|
elements |
Array of recognized diagram items. | An array of Diagram item blocks |
For example, a diagram may be composed of a Text label and of a diagram Node corresponding to a rectangle:
{
"type": "Diagram",
"id": "4",
"bounding-box": { ... },
"elements": [ {
"type": "Text",
...
}, {
"type": "Node",
"kind": "rectangle",
...
} ],
...
}
Diagram item blocks collectively form a family of blocks of different types describing the semantic structure of a diagram: connectors, text blocks, geometric shapes, etc. There is no actual “Diagram Item” type.
These blocks share the following common properties:
Property | Description | Content | Note |
---|---|---|---|
type |
Diagram item type |
Node , Edge , Polyedge or Text
|
|
parent |
Diagram item parent item (if any) | A diagram item numerical id | |
items |
Ink and/or converted shape primitives composing the item | An array of stroke, line and/or arc items | Strokes are only present in JIIX export when export.jiix.strokes is configured to true , lines and arcs are only present when export.jiix.primitives is configured to true
|
Diagram nodes and connectors (i.e. with type node
, edge
or polyedge
) will get the following styling properties:
Property | Description | Content |
---|---|---|
class |
Name of the CSS class attached to the node | A string |
style |
Inline CSS style that “overrides” any default style for the node | A string |
Style is only present in then JIIX export when export.jiix.style
is configured to true
.
Example:
{
"id": "diagram/3/242",
"type": "Node",
"parent": 12,
"bounding-box": { ... },
"items": [ ... ],
... specific properties ...
}
id
property like other blocks, their identifier is a number with a prefix identifying their parents and not a string.
➤ Diagram Node
block
A diagram item of type Node
is associated with a particular shape, an optional label, and may host child items. This is modeled by the
following properties:
Property | Description | Content |
---|---|---|
kind |
Diagram item Sub-type. |
rectangle , rhombus , polygon , circle , ellipse or doodle
|
label-element |
id of the diagram item of type Text that describes the label associated with the item. |
A diagram item numerical id |
children |
Array of child diagram items associated with the item | An array of diagram items numerical ids |
Depending on its “kind”, the item will have specific properties:
"kind": "rectangle"
x
- X coordinate of the upper-left corner of the rectangle.y
- X coordinate of the upper-left corner of the rectangle.width
- Width of the rectangle.height
- Height of the rectangle."kind": "rhombus"
points
- Array containing the 4 {x
, y
} points describing the rhombus."kind": "polygon"
points
- Array of {x
, y
} points describing the polygon."kind": "circle"
cx
- X coordinate of the circle center.cy
- Y coordinate of the circle center.r
- Radius of the circle."kind": "ellipse"
: an axis aligned ellipse.
cx
- X coordinate of the ellipse center.cy
- Y coordinate of the ellipse center.rx
- X radius of the ellipse.ry
- Y radius of the ellipse."kind": "doodle"
items
will never contain shape primitives.For example, the following node represents a rectangle in a diagram, associated with a text label:
{
"type": "Node",
"kind": "rectangle",
"label-element": "diagram/28",
"children": [ "diagram/28" ],
"id": "diagram/12",
"bounding-box": { ... },
"x": 24.2520676,
"y": 27.0434341,
"width": 56.4526367,
"height": 39.0985794
}
➤ Diagram Edge
block
A diagram item of type Edge
connects other diagram items.
Property | Description | Content | Note |
---|---|---|---|
kind |
Connector sub-type |
line or arc
|
|
children |
Array of children diagram items associated with the item | An array of diagram items numerical ids | |
connected |
List of the diagram items connected by this edge | An array of diagram items numerical ids | |
ports |
List of the connection ports associated with this edge | A list of ports numerical ids | |
p1Decoration |
Decoration of a “line” edge first point |
arrow-head in case an arrow head is present |
This property is absent if there is no decoration and only applies to “line” edges |
p2Decoration |
Decorationof a “line” edge second point |
arrow-head in case an arrow head is present |
This property is absent if there is no decoration and only applies to “line” edges |
startDecoration |
Decoration of an “arc” edge start point |
arrow-head in case an arrow head is present |
This property is absent if there is no decoration and only applies to “arc” edges |
endDecoration |
Decoration of an “arc” edge end point |
arrow-head in case an arrow head is present |
This property is absent if there is no decoration and only applies to “arc” edges |
Example of a “straight” edge:
{
"type": "Edge",
"kind": "line",
"connected": [ "diagram/12", "diagram/47" ],
"ports": [ 0, 1 ],
"id": "diagram/85",
"bounding-box": {... },
"x1": 81.9797897,
"y1": 49.3274384,
"x2": 146.199982,
"y2": 55.2804871,
"p2Decoration": "arrow-head"
}
Note that as a “line” connector, the edge includes x1
, y1
, x2
and y2
properties, defined the exact same way than in the case of line
items.
Example of a “curved” edge:
{
"type": "Edge",
"kind": "arc",
"connected": [ "diagram/10", "diagram/53" ],
"ports": [ 0, 1 ],
"id": "diagram/105",
"bounding-box": { ... },
"items": [ ... ],
"cx": 120.779442,
"cy": 74.4197159,
"rx": 32.6964035,
"ry": 32.6964035,
"phi": 0.00504867753,
"startAngle": -1.82163024,
"sweepAngle": 3.53351736,
"endDecoration": "arrow-head"
}
Note that as an “arc” connector, the edge includes cx
, cy
, rx
, ry
, phi
, startAngle
and sweepAngle
properties, defined the exact
same way than in the case of arc items.
➤ Diagram Polyedge
block
A diagram item of type Polyedge
connects other diagram items via several other edges. It is associated with the following properties:
Property | Description | Content |
---|---|---|
connected |
List of the diagram items connected by this polyedge | An array of diagram items numerical ids. |
edges |
List of edges composing this polyedge | A list of diagram edge items |
Example of a polyedge gathering three edges together:
{
"type": "Edge",
"kind": "polyedge",
"id": "diagram/65",
"connected": [ "diagram/37" ],
"edges": [ {
"type": "Edge",
"kind": "line",
...
}, {
"type": "Edge",
"kind": "line",
...
}, {
"type": "Edge",
"kind": "line",
...
} ]
}
➤ Diagram Text
block
A diagram item of type Text
combines the properties of a diagram item and those of a Text Block. It is styled using text
spans.
A drawing block gathers raw digital ink.
It can have the following specific properties:
Property | Description | Content | Note |
---|---|---|---|
items |
Ink composing the block. | An array of strokes items | Strokes are present in JIIX export when export.jiix.strokes is configured to true
|
spans |
List of item spans providing styling information | An array of item span objects | Style is only present in then JIIX export when export.jiix.style is configured to true
|
image |
Image data when an image is added into a Text Document
|
An image object |
Example:
{
"type": "Drawing",
"id": "7",
"bounding-box": { ... },
"items": [ ... ],
"spans": [ ... ],
"image": { ... }
}
When adding an image into a Text Document
, a Drawing
block is added that contains an image
object with the following properties:
Property | Description | Content |
---|---|---|
url |
url of the image. | The image filename (as stored into the package zip file). |
mime-type |
mime-type of the image. | Possible values are: image/jpeg, image/png and image/gif. |
x |
X coordinate of the upper-left corner of the image. | A number. |
y |
Y coordinate of the upper-left corner of the image. | A number. |
width |
Width of the image. | A number. |
height |
Height of the image. | A number. |
Example:
"image": {
"url": "1630419125093723_20160701_212430.jpg",
"mime-type": "image/jpeg",
"x": 14.0750961,
"y": 52.8047333,
"width": 195.449829,
"height": 109.940521
}
A block of type Math
is associated with the following property:
Property | Description | Content |
---|---|---|
expressions |
Array of recognized Math expressions. | An array of math node blocks. |
{
"type": "Math",
"id": "4",
"bounding-box": { ... },
"expressions": [ ... ]
}
Node
blockA math node block describes a portion of a mathematical expression.
Depending on the math node type
, a math node may contain other math nodes, in the operands
property.
Property | Description | Content | Note |
---|---|---|---|
type |
Node type | A string | Example: + , - , number , square root , see complete list
|
label |
Label associated with the node, when it is different from type
|
A string | Example: 2.453... , √ , θ , dx … |
operands |
Operands associated with the nodes, if any. | An array of math nodes | |
generated |
Signals that the node was added by the iink engine | A boolean | When not present this property is considered false
|
value |
Numerical value associated to a given node | A number | Not present when the iink SDK solver could not solve this particular node |
exact value |
More accurate value associated to a given node | A number | Only present when a value is present and whenever relevant. Example for √2, “value”: 2.01421356 and “exact-value”: “2.014213562373095” are present, whereas for √4, only “value”: 2 is present. |
items |
Ink and/or glyphs composing the node | An array of stroke and/or glyph items | Strokes are only present in JIIX export when export.jiix.strokes is configured to true , glyphs are only present when export.jiix.glyphs is configured to true
|
error |
Signals that the solver detected an error | A string | Possible values are: DivisionByZeroImpossible , IncompleteInput , Unsolved , InvalidInput and FailureToObtainAValidResult
|
class |
Name of the CSS class attached to the node | A string | Style is only present in then JIIX export when export.jiix.style is configured to true
|
style |
Inline CSS style that “overrides” any default style for the node | A string | Style is only present in then JIIX export when export.jiix.style is configured to true
|
Example:
{
"type": "+",
"id": "math/34",
"items": [ ... ],
"bounding-box": { ... },
"operands": [ ... ]
}
➤ Fence Math block
Math nodes of type fence
have the following specific properties:
Property | Description | Content | Examples |
---|---|---|---|
open symbol |
Opening symbol of the fence. If this property is not set, indicates that no opening symbol was recognized | A string |
( , [ , {
|
close symbol |
Closing symbol of the fence. If this property is not set, indicates that no closing symbol was recognized | A string |
) , ] , }
|
➤ Matrix Math block
Math nodes of type matrix
have the following specific properties:
Property | Description | Content |
---|---|---|
rows |
Matrix content, row per row | An array of cells objects, each representing a row of the matrix |
cells |
Content of a row of the matrix | An array of math nodes |
➤ System Math block
Math nodes of type system
have the following specific property:
Property | Description | Content |
---|---|---|
expressions |
Array of expressions within the system | An array of math nodes |
A block of type Text
has the following specific properties:
Property | Description | Content | Note |
---|---|---|---|
label |
Recognition result associated with this text block | A string | Example: "label": "Hello how are you?"
|
words |
List of recognized words | An array of word objects | Words are only present in then JIIX export when export.jiix.text.words is configured to true
|
chars |
List of recognized characters | An array of character objects | Characters are only present in then JIIX export when export.jiix.text.chars is configured to true
|
spans |
List of text spans providing styling information | An array of text span objects | Style is only present in then JIIX export when export.jiix.style is configured to true
|
linebreaks |
List of explicit line breaks in the text block | An array of line index | Only present in then JIIX export when export.jiix.deprecated.text.linebreaks is configured to true
|
structure |
Text layout structure | A structure object that is an array of text, list and divider items. | Only present in then JIIX export when export.jiix.text.structure is configured to true
|
export.jiix.deprecated.text.linebreaks
option is still available, it is deprecated. So, we recommend you using the export.jiix.text.structure
option to retrieve information about line breaks.
Example:
{
"type": "Text",
"id": "7",
"bounding-box": { ... },
"label": "hello",
"words": [ ... ],
"chars": [ ... ],
"spans": [ ... ]
}
MyScript iink SDK differentiates explicit from implicit line breaks. An explicit line break is detected each time the writer goes back to the beginning of the next line but there was space to insert the word at the end of the previous line. An explicit line break is for instance preserved by reflow operations. An implicit line break corresponds to the case the user went to a new line after the previous one was fully filled (based on the view size).
Let’s assume that we write something that visually looks like:
Hello
there!
This is a bit more than a full
line
We will assume that the third line takes the full width of the view.
The corresponding JIIX export when export.jiix.deprecated.text.linebreaks
is configured to true
will look like:
{
"type": "Text",
"bounding-box": { ... },
"label": "Hello\nthere!\nThis iis a bit more than a full\nline",
"words": [ ... ],
"linebreaks": [ {
"line": 0
}, {
"line": 1
} ],
"version": "3",
"id": "MainBlock"
}
Notice the three line breaks in the main label
. Via the linebreaks
property, the JIIX format explicits that the line breaks on line 0 and
1 (the first two lines) are explicit line breaks.
When the export.jiix.text.structure
configuration is enabled, the JIIX file contains the text layout structure for Text blocks.
It consists in describing the way users organize their text: plain text, numbered or unnumbered list, empty lines.
This text layout information is stored into a structure
objects that is an array of text-item
, list-item
and divider
items.
The divider
item corresponds to empty lines.
The text-item
, list-item
and divider
objects have the following properties:
Property | Description | Content | Note |
---|---|---|---|
id |
Unique identifier of the item | A string | Only present for text-item and list-item
|
type |
Type of the item | A string | Values can be text-item , list-item or divider
|
indentation |
Amount of indentation before the item | A number | |
text-indentation |
Amount of indentation before the text contained in the item | A number | |
first-char |
Index of the first character contained in this item | An integer, representing the index of a character object in the Text block | Only present in the JIIX export when export.jiix.text.chars is configured to true
|
last-char |
Index of the last character contained in this item. | An integer, representing the index of a character object in the Text block | Only present in the JIIX export when export.jiix.text.chars is configured to true
|
first-word |
Index of the first word contained in this item. | An integer, representing the index of a word object in the Text block | Only present in the JIIX export when export.jiix.text.words is configured to true
|
last-word |
Index of the last word contained in this item. | An integer, representing the index of a word object in the Text block | Only present in the JIIX export when export.jiix.text.words is configured to true
|
first-line |
Index of the item first line | An integer | |
last-line |
Index of the item last line | An integer | |
explicit-linebreak |
Indicates whether the line creation is due a writer’s explicit line break | A boolean | Always true for dividers and list items, can be false for text items when they are started by a non explicit linebreak |
In addition, the list-item
contains a bullet
object with the following attributes:
Property | Description | Content | Note | |
---|---|---|---|---|
kind |
Bullet kind of symbol or glyph | A string | Value can be bullet , letter , number or check
|
|
first-char |
Index of the bullet first character | An integer, representing the index of a character object in the Text block | Only present in the JIIX export when export.jiix.text.chars is configured to true
|
|
last-char |
Index of the bullet last character | An integer, representing the index of a character object in the Text block | Only present in the JIIX export when export.jiix.text.chars is configured to true
|
|
first-word |
Index of the bullet first word | An integer, representing the index of a word object in the Text block | Only present in the JIIX export when export.jiix.text.words is configured to true
|
|
last-word |
Index of the bullet last word | An integer, representing the index of a word object in the Text block | Only present in the JIIX export when export.jiix.text.words is configured to true
|
|
first-line |
Index of the bullet first line | An integer | ||
last-line |
Index of the bullet last line | An integer |
For example, let’s assume that we write something that visually looks like:
Hello
- How are you?
1. Fine
2. Good
A. Super
B. Extra
- Hello
How are you?
How are you? How are
you?
The corresponding JIIX file including the structure block would look like this file.
A Raw Content block corresponds to the output of raw digital ink analysis. It is meant to express a segmentation between ink corresponding to text vs. ink corresponding to non-text, with optional interpretation as text and shape recognition results expressed as a hierarchy of diagram items.
A block of type Raw Content
has the following specific property:
Property | Description | Content |
---|---|---|
elements |
Array of Raw Content items and/or Diagram items, depending on whether raw-content.recognition.text and raw-content.recognition.shape are set to true or false
|
An array of Raw Content and/or Diagram items |
Example:
{
"type": "Raw Content",
"id": "MainBlock",
"bounding-box": { ... },
"elements": [ ... ]
}
In addition to common block properties, raw content item blocks also have the following specific properties:
Property | Description | Content | Note |
---|---|---|---|
kind |
Raw content item identified as representing “text” or “non-text” ink data |
text or non-text
|
|
items |
Ink composing the block. | An array of strokes items | Strokes are present in JIIX export when export.jiix.strokes is configured to true
|
Example:
{
"type": "Raw Content",
"kind": "text",
"id": "raw-content/13",
"bounding-box": { ... },
"items": [ ... ]
}
id
property like other blocks, their identifier is a number with a prefix identifying their parents and not a string.
Styling of a raw content item block is similar to Drawing for text and non-text blocks without the recognition enabled, otherwise it is similar as that of Diagram item blocks.
type |
operands |
other properties |
---|---|---|
number |
0 | label |
symbol |
0 | label |
group |
>=2 | |
+ |
>=1 | |
- |
>=1 | |
× (U+00D7: multiplication sign) |
>=1 | |
/ |
>=1 | |
÷ (U+00F7: division sign) |
>=1 | |
fraction |
2 | |
power |
1 | |
! |
1 | |
percentage |
2 (reference, percentage) |
operator :+ , - or × (U+00D7: multiplication sign) |
= |
2 | |
> |
2 | |
< |
2 | |
≈ (U+2248: almostEqualTo) |
2 | |
≃ (U+2243: asymptoticallyEqualTo) |
2 | |
≠ (U+2260: notEqualTo) |
2 | |
≡ (U+2261: identicalTo) |
2 | |
≢ (U+2262: notIdenticalTo) |
2 | |
≤ (U+2264: lessThanOrEqualTo) |
2 | |
≥ (U+2265: greaterThanOrEqualTo) |
2 | |
≪ (U+226A: muchLessThan) |
2 | |
≫ (U+226B: muchGreaterThan) |
2 | |
⇐ (U+21D0: leftwardsDoubleArrow) |
2 | |
⇒ (U+21D2: rightwardsDoubleArrow) |
2 | |
⇔ (U+21D4: leftRightDoubleArrow) |
2 | |
∥ (U+2225: parallelTo) |
2 | |
square root |
1 |
√ (U+221A: square root) |
system |
0 |
expressions [node] |
matrix |
0 |
rows [cells ] |
rows |
0 |
cells [node] |
fence |
1 |
open symbol , close symbol
|
underscript |
2 (script, underscript) | |
overscript |
2 (script, overscript) | |
underoverscript |
3 (script, underscript, overscript) | |
superscript |
2 (script, superscript) | |
subscript |
2 (script, subscript) | |
subsuperscript |
3 (script, subscript, superscript) | |
presuperscript |
2 (script, presuperscript) | |
partialfractionnumerator |
1 (numerator) | |
partialfractiondenominator |
1 (denominator) | |
slantedfraction |
2 (numerator, denominator) | |
mixed |
2 (fraction, number) |