Ink

A light-weight, customizable view for capturing a signature or drawing in an Android app.

License

License

GroupId

GroupId

com.simplify
ArtifactId

ArtifactId

ink
Last Version

Last Version

1.0.0
Release Date

Release Date

Type

Type

aar
Description

Description

Ink
A light-weight, customizable view for capturing a signature or drawing in an Android app.
Project URL

Project URL

https://github.com/simplifycom/ink-android
Source Code Management

Source Code Management

https://github.com/simplifycom/ink-android

Download ink

How to add to project

<!-- https://jarcasting.com/artifacts/com.simplify/ink/ -->
<dependency>
    <groupId>com.simplify</groupId>
    <artifactId>ink</artifactId>
    <version>1.0.0</version>
    <type>aar</type>
</dependency>
// https://jarcasting.com/artifacts/com.simplify/ink/
implementation 'com.simplify:ink:1.0.0'
// https://jarcasting.com/artifacts/com.simplify/ink/
implementation ("com.simplify:ink:1.0.0")
'com.simplify:ink:aar:1.0.0'
<dependency org="com.simplify" name="ink" rev="1.0.0">
  <artifact name="ink" type="aar" />
</dependency>
@Grapes(
@Grab(group='com.simplify', module='ink', version='1.0.0')
)
libraryDependencies += "com.simplify" % "ink" % "1.0.0"
[com.simplify/ink "1.0.0"]

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

There are no modules declared in this project.

Ink Build Status

A light-weight, customizable view for capturing a signature or drawing in an Android app.

screenshot

Import the Dependency Download

To import the Android SDK, include it as a dependency in your build.gradle file

compile 'com.simplify:ink:X.X.X'

Usage

To use the library, you must include the InkView class in your project. A simple solution is to reference it directly into your layout:

<com.simplify.ink.InkView
    android:id="@+id/ink"
    android:layout_width="match_parent"
    android:layout_height="match_parent"/>

Then, within your code, fetch the view and initialize it:

InkView ink = (InkView) findViewById(R.id.ink);
    ink.setColor(getResources().getColor(android.R.color.black));
    ink.setMinStrokeWidth(1.5f);
    ink.setMaxStrokeWidth(6f);

Features can be toggled on and off by using the custom attributes on the xml tag:

// add this to the root element in your layout
xmlns:app="http://schemas.android.com/apk/res-auto"

<com.simplify.ink.InkView
    android:id="@+id/ink"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:inkFlags="interpolation|responsiveWeight"/>

or by setting the flags manually in code:

InkView ink = (InkView) findViewById(R.id.ink);
ink.setFlags(InkView.FLAG_INTERPOLATION | InkView.FLAG_RESPONSIVE_WEIGHT);

By default, interpolation and responsive weight flags are on.

You can capture the drawing in the form of a bitmap by calling:

Bitmap drawing = ink.getBitmap();

or you can also include a background color:

Bitmap drawing = ink.getBitmap(getResources().getColor(R.color.my_background_color));
com.simplify

Simplify Commerce

Versions

Version
1.0.0
0.2.3
0.2.2
0.2.1
0.2
0.1