The fastest way to integrate rich handwriting features in your webapp.
👉 Examples👈
iinkTS is a JavaScript library that can be used in every web application to bring handwriting recognition.
It integrates all you need:
- Signal capture for all devices,
- Digital ink rendering,
- Link to MyScript Cloud to bring handwriting recognition.
- Text and Math support,
- Easy to integrate,
- Digital ink capture and rendering,
- Rich editing gestures,
- Import and export content,
- Styling,
- Typeset support,
- More than 200 mathematical symbols supported,
- 72 supported languages.
You can discover all the features on our Developer website for Text and Math.
- Have npm, yarn.
- Have a MyScript developer account. You can create one here.
- Get your keys and the free monthly quota to access MyScript Cloud at developer.myscript.com
iinkTS can be installed with the well known package managers npm
, yarn
.
If you want to use npm
or yarn
you first have to init a project (or use an existing one).
npm init
OR
yarn init
You can then install iinkTS and use it as showed in the Usage section.
npm install iink-ts
OR
yarn add iink-ts
-
Create an
index.html
file in the same directory. -
Add the following lines in the
head
section of your file to use iinkTS and the css :
<script src="node_modules/iink-ts/dist/iink.min.js"></script>
- Still in the
head
section, add astyle
and specify the height and the width of your editor:
<style>
#editor {
width: 100%;
height: 100%;
}
</style>
- In the
body
tag, create adiv
tag that will contain the editing area:
<div id="editor"></div>
- In JavaScript and within a
<script>
tag placed before the closing tag</body>
, create the editor using the Editorconstructor
function, your editor html element and a simple configuration, then initialize it:
- Initialization in the standard case, i.e. websocket or rest mode
const editorElement = document.getElementById('editor');
const editor = new iink.Editor(editorElement, {
configuration: {
server: {
applicationKey: '#YOUR MYSCRIPT DEVELOPER APPLICATION KEY#',
hmacKey: '#YOUR MYSCRIPT DEVELOPER HMAC KEY#'
}
}
});
editor.initialize();
- Initialization in the offscreen case
const editorElement = document.getElementById('editor');
const editor = new iink.Editor(editorElement, {
configuration: {
offscreen: true,
server: {
applicationKey: '#YOUR MYSCRIPT DEVELOPER APPLICATION KEY#',
hmacKey: '#YOUR MYSCRIPT DEVELOPER HMAC KEY#'
}
}
});
editor.initialize();
- Your
index.html
file should look like this:
- In the standard case
<html>
<head>
<script src="node_modules/iink-ts/dist/iink.min.js"></script>
<style>
#editor {
width: 100%;
height: 100%;
}
</style>
</head>
<body>
<div id="editor" touch-action="none"></div>
<script>
const editorElement = document.getElementById('editor');
const editor = new iink.Editor(editorElement, {
configuration: {
server: {
applicationKey: '#YOUR MYSCRIPT DEVELOPER APPLICATION KEY#',
hmacKey: '#YOUR MYSCRIPT DEVELOPER HMAC KEY#'
}
}
});
editor.initialize();
</script>
</body>
</html>
- In the offscreen case
<html>
<head>
<script src="node_modules/iink-ts/dist/iink.min.js"></script>
<style>
#editor {
width: 100%;
height: 100%;
}
</style>
</head>
<body>
<div id="editor" touch-action="none"></div>
<script>
const editorElement = document.getElementById('editor');
const editor = new iink.Editor(editorElement, {
configuration: {
offscreen: true,
server: {
applicationKey: '#YOUR MYSCRIPT DEVELOPER APPLICATION KEY#',
hmacKey: '#YOUR MYSCRIPT DEVELOPER HMAC KEY#'
}
}
});
editor.initialize();
</script>
</body>
</html>
- Open
index.html
in your browser or serve your folder content using any web server.
You can find this guide, and a more complete example on the MyScript Developer website.
You can find a complete documentation with the following sections on our Developer website:
- Get Started: how to use iinkTS with a full example,
- Editing: how to interact with content,
- Conversion: how to convert your handwritten content,
- Import and Export: how to import and export your content,
- Styling: how to style content.
As well as a global Configuration page.
We also provide a complete API Reference.
Instructions to help you build the project and develop are available in the SETUP.md file.
You can get support and ask your questions on the dedicated section of MyScript Developer website.
Made a cool app with iinkTS? We would love to hear about you! We’re planning to showcase apps using it so let us know by sending a quick mail to [email protected].
We welcome your contributions: if you would like to extend iinkTS for your needs, feel free to fork it!
Please take a look at our contributing guidelines before submitting your pull request.
If you encounter the error: Unrecognized property: convert.force
, this means your server version is lower than 2.3.0.
To correct the problem, you have 2 options:
- either update your server
- either add in the iink-ts configuration
configuration.server.version = 2.2.0
This library is licensed under the Apache 2.0.