MyScript technology is built around a consistent set of concepts and conventions that can be expressed using a specific, non-ambiguous vocabulary. This page provides useful definitions that will help you easily understand and communicate these notions.

Configuration

Configuration is a way to fine-tune the default behavior of an SDK to meet one’s particular needs. With MyScript iink SDK, it is done at the engine or at editor level.

Configuration file

A configuration file (*.conf) is the textual representation of the parameters and resources that an engine shall consume to be able to recognize a particular type of content (a particular language, diagrams, maths, etc.).

Content block

With MyScript iink SDK, a content block corresponds to a semantic subdivision of the content, and may contain data and/or other blocks. For instance, a “Text Document” part can be composed of “Text”, “Math”, “Diagram”, “Raw Content” and “Drawing” blocks. A “Math” part will only have a single block, hosting the math content itself.

Content package

With MyScript iink SDK, a package is a container storing ink and its interpretation as an ordered collection of parts. It can be saved as a file on the file system and later reloaded or exchanged between users.

Content part

With MyScript iink SDK, a part corresponds to a standalone content unit that can be processed by the SDK. Each part has a specific type (“Text”, “Drawing”, “Diagram”, “Math”, “Raw Content” or “Text Document”). A part hosts a hierarchy of blocks.

Content type

The type of a piece of content identifies the semantic and structural rules that apply. For instance, “Text” and “Math” obey different layout rules, a “Drawing” is totally free from structural constraints, and a “Diagram” supports the concepts of nodes and edges.

MyScript iink SDK supports a certain number of content types out of the box.

Conversion

Conversion is the action of turning handwritten content into a typeset equivalent.

Decoration

A decoration is a semantic marking of a portion of ink (typeset or not), usually by means of a decoration gesture. MyScript iink SDK supports several decoration types, such as underline, double-underline or circle.

Digital ink

Digital ink is the digital representation of the input made using a finger or a stylus on a surface. It corresponds to an ordered set of strokes. MyScript interprets digital ink to turn it into Interactive Ink

Editor

With MyScript iink SDK, an editor is the main entry point to act on interactive content. It is instantiated from an Engine object and manages input, import, export and the routing of rendering commands.

Engine

An engine object represents the MyScript runtime environment. In MyScript iink SDK, it takes care of the recognition process and allows you to instantiate other important objects such as packages, editors and renderers.

Exchange format

The exchange format (jiix extension) is a JSON representation of an interactive ink model and can be used to exchange information between MyScript iink SDK, the host application or at a wider scale. Readable and parseable, it is meant as a transitory step to support custom import and export capabilities.

See the JIIX format reference for more information.

Gesture

A gesture corresponds to a sequence of one or several strokes that the engine will interpret as an intention to edit or decorate content. For example, scratching an ink or typeset word can be interpreted as an erasure, underlining another word as a way to decorate it to give it a particular semantic.

Glyph

A glyph is a graphic symbol that provides the look or shape for a character, i.e. its visual representation. For instance those glyphs represent the ‘h’ letter:

h h h

The MyScript engine examines glyphs and tries to determine, by its shape, loops, size, etc, which digital character they best match. Some glyphs are more alike than others and so the engine will choose the most likely match.

Ink item

In the MyScript ecosystem, the ink item denomination encompasses the wide range of elements that can be manipulated by the model, whether they correspond to raw/processed digital ink or typeset content.

Inking

Inking specifically refers to the rendering of ink strokes. It can be obtained by different rendering technologies and algorithms and is usually based on stroke information such as individual point coordinates, associated pressure and time information, as well as styling considerations like stroke width and color.

Interactive ink (iink)

MyScript interactive ink technology relies on interpretation of digital ink to make it able to obey the same kind of manipulation rules that people have come to expect from other types of digital content, making it usable in a productive environment.

Raw content

Raw content corresponds to content which semantic structure is unknown by MyScript iink SDK, in that it was not explicitly segmented according to supported content types. For example, free notes retrieved from a digital pen&paper solution may mix text, math, doodles or any other content without explicit structure.

MyScript iink SDK manages such content via the “Raw Content” content part and provides some analysis capabilities such as text block extraction that can let an integrator build an ink search engine.

Renderer

A renderer is a software component that issues rendering commands to render content, knowing which areas of the model need to be refreshed, as well as parameters such as zoom factor or view offset.

Resource

A resource corresponds to a character or linguistic piece of knowledge that can be consumed by a MyScript engine to be able to recognize a particular type of content.

Stroke

A stroke is defined as the trajectory of a finger or stylus on a surface, from the moment it touches the writing area until it is lifted again. The ‘hello’ word below is written with 4 strokes:

1 2 3 4

A stroke is represented as a time-ordered sequence of 2D points (x, y, t), where x and y are the coordinates and t the timestamp.

Stroker

A stroker is a software component that generates the rendering of a stroke. Depending on styling options that are chosen, strokes may look different (for instance, as drawn by a bullet pen or a calligraphy brush).

Style sheet

A style sheet is the declarative definition of the look & feel of various ink items (typeset or not). It allows you for example to set the color of the ink or the background color to apply when an item is highlighted. MyScript iink SDK relies on a subset of CSS with a few specificities.

Timestamp

A timestamp is a value that precisely identified the moment an element was captured or generated. By convention, it corresponds to the time in milliseconds elapsed since January, 1st 1970. It is particularly important in an interactive context, where it enables the engine to process the input to detect editing or decoration gestures.

Typeset

Typeset is the result of conversion of digital ink: a clean representation of the digital content based on fonts and clean vector shapes.