ImageEditor

Simple image editor

License

License

GroupId

GroupId

com.github.lauhwong
ArtifactId

ArtifactId

image-editor
Last Version

Last Version

1.1
Release Date

Release Date

Type

Type

aar
Description

Description

ImageEditor
Simple image editor
Project URL

Project URL

https://github.com/lauhwong/ImageEditor
Source Code Management

Source Code Management

https://github.com/lauhwong/ImageEditor

Download image-editor

How to add to project

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

Dependencies

compile (4)

Group / Artifact Type Version
org.jetbrains.kotlin : kotlin-stdlib-jre7 jar 1.1.2-4
org.jetbrains.kotlin : kotlin-reflect jar 1.1.2-4
com.android.support » appcompat-v7 jar 25.3.1
com.android.support » design jar 25.3.1

Project Modules

There are no modules declared in this project.

ImageEditor

Logo

It looks like what ?

Editor

DemoApk download ?

ApkDownloadQRCode

How to use lib

dependencies {
  compile 'com.github.lauhwong:image-editor:1.1'
}

or use snap-shot in maven

repositories {
        maven {
           url 'https://oss.sonatype.org/content/repositories/snapshots/'
        }
    }

dependencies {
      compile 'com.github.lauhwong:image-editor:1.1-SNAPSHOT'
    }

and then use it in your application just like this:

val setup = EditorSetup(source, mOriginalPath, getEditorSavePath())
val intent = ImageEditorActivity.intent(this, setup)
startActivityForResult(intent, ACTION_REQUEST_EDITOR)

receive ImageEditor result from onActivityResult may be like code below:

override fun onActivityResult(requestCode: Int, resultCode: Int, data: Intent?) {
	super.onActivityResult(requestCode, resultCode, data)
        data ?: return
        if (resultCode == Activity.RESULT_OK) {
		when (requestCode) {
			ACTION_REQUEST_EDITOR -> {
                    	val result = data.getSerializableExtra(resultCode.toString()) as EditorResult
			handleResultFromEditor(result)
			}
		}
	}
}

more details usage can be explore in example module

License

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

Versions

Version
1.1
1.0