All Projects → MyScript → Myscript Text Web

MyScript / Myscript Text Web

Licence: other
✏️ ☁️ The easy way to integrate text handwriting recognition in your web app.

Projects that are alternatives of or similar to Myscript Text Web

Westore
更好的小程序项目架构
Stars: ✭ 3,897 (+2463.82%)
Mutual labels:  cloud, webcomponents
Myscript Math Web
✏️ ☁️ The easy way to integrate mathematical expressions handwriting recognition in your web app.
Stars: ✭ 194 (+27.63%)
Mutual labels:  cloud, webcomponents
Incubator Brooklyn
Mirror of Apache Brooklyn
Stars: ✭ 139 (-8.55%)
Mutual labels:  cloud
Volumetric Path Tracer
☁️ Volumetric path tracer using cuda
Stars: ✭ 145 (-4.61%)
Mutual labels:  cloud
Ladder
A general purpose extensible autoscaler for the cloud
Stars: ✭ 143 (-5.92%)
Mutual labels:  cloud
Skypad
Skypad
Stars: ✭ 141 (-7.24%)
Mutual labels:  cloud
Batchexplorer
A client tool to help create, debug and monitor Azure Batch Applications
Stars: ✭ 141 (-7.24%)
Mutual labels:  cloud
Pedalinomini
Same features of Pedalino™ in a compact form.
Stars: ✭ 139 (-8.55%)
Mutual labels:  cloud
Drivesync
Google Drive synchronization for Linux
Stars: ✭ 148 (-2.63%)
Mutual labels:  cloud
Cloud
Secure and Interoperable Internet of Things
Stars: ✭ 142 (-6.58%)
Mutual labels:  cloud
Magic Microservices
Write components in any way, use them everywhere.😘
Stars: ✭ 145 (-4.61%)
Mutual labels:  webcomponents
App Datepicker
Datepicker element built with Google's lit-element and Material Design 2
Stars: ✭ 142 (-6.58%)
Mutual labels:  webcomponents
Yrssf
一个分布式(p2p)云教学/云课堂/直播平台系统CMS,睿易派的开源替代品
Stars: ✭ 141 (-7.24%)
Mutual labels:  cloud
Goes
Go Event Sourcing made easy
Stars: ✭ 144 (-5.26%)
Mutual labels:  cloud
Jhipster Online
JHipster Online lets you generate your JHipster projects through a user friendly web interface.
Stars: ✭ 140 (-7.89%)
Mutual labels:  cloud
Oci Cloudnative
MuShop - Cloud Native microservices demo for Oracle Cloud Infrastructure
Stars: ✭ 147 (-3.29%)
Mutual labels:  cloud
Portkey
Live-coding the Cloud
Stars: ✭ 139 (-8.55%)
Mutual labels:  cloud
Hollowtrees
A ruleset based watchguard to keep spot/preemptible instance based clusters safe, with plugins for VMs, Kubernetes, Prometheus and Pipeline
Stars: ✭ 141 (-7.24%)
Mutual labels:  cloud
E Books
A collections of FREE ebooks
Stars: ✭ 143 (-5.92%)
Mutual labels:  cloud
Terrahub
Terraform Automation and Orchestration Tool (Open Source)
Stars: ✭ 148 (-2.63%)
Mutual labels:  cloud

MyScript Text Web

npm version Published on Vaadin  Directory Stars on vaadin.com/directory Published on webcomponents.org Examples Documentation

⚠️ This repository is archived ⚠️

iinkJS grants you high integration flexibility by letting you choose your favorite framework or components. For this reason, we have decided to focus on iinkJS and to discontinue our ready-to-use Web components.

For more information, please see documentation.

We also provide an example to integrate iinkJS as webcomponent: link.

🚧

The easy way to integrate text handwriting recognition in your web app.

myscript-text-web is a Web component that can be used in every web application to bring text handwriting recognition and conversion.

It integrates all you need:

  • Signal capture for all devices,
  • Digital ink rendering,
  • Link to MyScript Cloud to bring handwriting recognition.

Table of contents

Examples

If you're not familiar with MyScript and Interactive Ink, consider discovering its major features with our text demo and tutorial.

Simple example of myscript-text-web.

All our examples with the source codes.

Features

  • Easy to integrate,
  • Digital ink capture and rendering,
  • Rich editing gestures,
  • Import and export content,
  • Styling,
  • Typeset support,
  • 65 supported languages.

You can discover all the text features on our Developer website.

Requirements

  1. Have npm or yarn installed.
  2. Have a MyScript developer account. You can create one here.
  3. Get your keys and the free monthly quota to access MyScript Cloud at developer.myscript.com

Installation

Use an existing project or start a fresh one.

npm init

Install myscript-text-web and use it as showed in the Usage section.

npm install myscript-text-web

Usage

  1. Create an index.html file in the same directory.

  2. Add the following lines in the head section to import the library and the webcomponents polyfill.

<script type="module" src="node_modules/myscript-text-web/myscript-text-web.js"></script>
<script src="node_modules/@webcomponents/webcomponentsjs/webcomponents-loader.js"></script>
  1. Still in the head section, add the following style:
<style>
    myscript-text-web {
        height: 100vh;
    }
</style>
  1. Use the component in the body section with the keys you received by mail.
<myscript-text-web
  applicationkey="YOUR MYSCRIPT DEVELOPER APPLICATION KEY"
  hmackey="YOUR MYSCRIPT DEVELOPER HMAC KEY">
</myscript-text-web>
  1. Your index.html file should look like this:
<html>
    <head>
        <script type="module" src="node_modules/myscript-text-web/myscript-text-web.js"></script>
        <script src="node_modules/@webcomponents/webcomponentsjs/webcomponents-loader.js"></script>
        <style>
            myscript-text-web {
                height: 100vh;
            }
        </style>
    </head>
    <body>
      <myscript-text-web
        applicationkey="YOUR MYSCRIPT DEVELOPER APPLICATION KEY"
        hmackey="YOUR MYSCRIPT DEVELOPER HMAC KEY">
      </myscript-text-web>
    </body>
</html>
  1. Launch a local Web server to start using it! We recommend to use the polymer one, you can find more information on the Polymer website.
polymer serve

You can find this guide and a more complete example on the MyScript Developer website.

Documentation

You can find a complete documentation with the following sections on our Developer website:

We also provide a complete API Reference.

Getting support

You can get support and ask your questions on the dedicated section of MyScript Developer website.

Sharing your feedback

Made a cool app with myscript-text-web? 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]

Contributing

We welcome your contributions: if you wish to contribute to myscript-text-web, feel free to fork it!

Please take a look at our contributing guidelines before submitting your pull request.

License

This library is licensed under the Apache 2.0.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].