ImageEditor

Simple image editor

Лицензия

Лицензия

Группа

Группа

com.github.lauhwong
Идентификатор

Идентификатор

image-editor
Последняя версия

Последняя версия

1.1
Дата

Дата

Тип

Тип

aar
Описание

Описание

ImageEditor
Simple image editor
Ссылка на сайт

Ссылка на сайт

https://github.com/lauhwong/ImageEditor
Система контроля версий

Система контроля версий

https://github.com/lauhwong/ImageEditor

Скачать image-editor

Как подключить последнюю версию

<!-- 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"]

Зависимости

compile (4)

Идентификатор библиотеки Тип Версия
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

Модули Проекта

Данный проект не имеет модулей.

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.

Версии библиотеки

Версия
1.1
1.0