• Stars
    star
    122
  • Rank 292,031 (Top 6 %)
  • Language
    TypeScript
  • License
    Other
  • Created about 5 years ago
  • Updated 8 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

React Native module for PhotoEditor SDK

PhotoEditor SDK Logo

NPM version Platform support Twitter

React Native module for PhotoEditor SDK

Check out our video tutorial for a step-by-step integration guide which also details advanced SDK features, such as serializing and reusing previously applied editing operations.

System requirements

  • React Native: 0.60
  • iOS: 13
  • Android: 5 (SDK 21)

Getting started

Known Issues

With version 2.13.0, we recommend using compileSdkVersion not lower than 31 for Android. However, this might interfere with your application's Android Gradle Plugin version if this is set to 4.x.

If you don't use a newer Android Gradle Plugin version, e.g., by updating at least to RN 0.68.0, you'll most likely encounter a build error similar to:

FAILURE: Build failed with an exception.

* What went wrong:
A problem occurred configuring project ':react-native-photoeditorsdk'.
> com.android.builder.errors.EvalIssueException: Installed Build Tools revision 31.0.0 is corrupted. Remove and install again using the SDK Manager.

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.

* Get more help at https://help.gradle.org

As a workaround you can create the following symlinks:

  1. Inside /Users/YOUR-USERNAME/Library/Android/sdk/build-tools/31.0.0/: Create a dx symlink for the d8 file with ln -s d8 dx.
  2. From there, go to ./lib/ and create a dx.jar symlink for the d8.jar file with ln -s d8.jar dx.jar.

Expo CLI

Limitations

This module can not be used in the Expo Go application because it uses custom native libraries.

Usage

In order to use this module with the Expo CLI you can make use of our integrated Expo config plugin:

  1. Add our module to your Expo application:

    expo install react-native-photoeditorsdk

    This will automatically install react-native-imglysdk which you can use to configure your application with our Expo config plugin.

  2. Inside your app's app.json or app.config.js add our config plugin:

    {
      "plugins": ["react-native-imglysdk"]
    }

    If needed, you can also use a specific version of our native library for Android as well as define explicitly the included modules. By default, all modules for both PhotoEditor SDK and VideoEditor SDK are included. Furthermore, you can configure the buildToolsVersion, minSdkVersion, compileSdkVersion, targetSdkVersion, and kotlinGradlePluginVersion.

    {
      "plugins": [
        [
          "react-native-imglysdk",
          {
            "android": {
              "version": "10.4.1",
              "modules": [
                "ui:core",
                "ui:transform",
                "ui:filter",
                "assets:filter-basic"
              ],
              "buildToolsVersion": "31.0.0",
              "minSdkVersion": "21",
              "compileSdkVersion": "31",
              "targetSdkVersion": "30",
              "kotlinGradlePluginVersion": "1.5.32"
            }
          }
        ]
      ]
    }

    For further information on the available modules, please refer to step 4 of the React Native CLI Android guide below.

    Please note that the react-native-imglysdk module manages both VideoEditor SDK as well as PhotoEditor SDK so you only need to add the Expo config plugin once even when using both SDKs.

  3. From version 2.15.0 the iOS deployment target needs to be set to at least iOS 13. You can use the expo-build-properties config plugin for this. Please refer to the official Expo docs.

  4. The changes will be applied on expo prebuild or during the prebuild phase of eas build.

For further information on how to integrate Expo config plugins please also refer to the official docs.

React Native CLI

Install the React Native module in your project as follows:

yarn add react-native-photoeditorsdk

In general, we highly recommend using React Native 0.60 or newer. If you cannot avoid using an older React Native version you need to link the native dependencies with:

yarn react-native link

before you continue with the platform-specific guides below.

iOS

For React Native 0.60 and newer autolinking is used and PhotoEditor SDK for iOS should be automatically installed:

cd ios && pod install && cd ..

and updated:

cd ios && pod update && cd ..

with CocoaPods.

For older React Native versions autolinking is not available and PhotoEditor SDK for iOS needs to be manually integrated in your Xcode project if you don't use CocoaPods to manage your dependencies. Make sure to put ImglyKit.framework and PhotoEditorSDK.framework in the ios/ directory of your project.

Android

  1. Add the img.ly repository and plugin by opening the android/build.gradle file (not android/app/build.gradle) and adding these lines at the top:

    buildscript {
        repositories {
            mavenCentral()
            maven { url "https://artifactory.img.ly/artifactory/imgly" }
        }
        dependencies {
            classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.32"
            classpath 'ly.img.android.sdk:plugin:10.4.1'
        }
    }

    In order to update PhotoEditor SDK for Android replace the version string 10.4.1 with a newer release.

  2. Still in the android/build.gradle file (not android/app/build.gradle), add these lines at the bottom:

    allprojects {
        repositories {
            maven { url 'https://artifactory.img.ly/artifactory/imgly' }
        }
    }
  3. In the same file, you will need to modify the minSdkVersion to at least 21. We also recommend to update the buildToolsVersion to 31.0.0 or higher as well as the compileSdkVersion to 31 or higher:

    buildscript {
        ext {
    -       buildToolsVersion = "30.0.2"
    +       buildToolsVersion = "31.0.0"
    -       minSdkVersion = 19
    +       minSdkVersion = 21
    -       compileSdkVersion = 30
    +       compileSdkVersion = 31
            targetSdkVersion = 30
        }
    }
  4. Configure PhotoEditor SDK for Android by opening the android/app/build.gradle file (not android/build.gradle) and adding the following lines under apply plugin: "com.android.application":

    apply plugin: 'ly.img.android.sdk'
    apply plugin: 'kotlin-android'
    
    // Comment out the modules you don't need, to save size.
    imglyConfig {
        modules {
            include 'ui:text'
            include 'ui:focus'
            include 'ui:frame'
            include 'ui:brush'
            include 'ui:filter'
            include 'ui:sticker'
            include 'ui:overlay'
            include 'ui:transform'
            include 'ui:adjustment'
            include 'ui:text-design'
    
            // This module is big, remove the serializer if you don't need that feature.
            include 'backend:serializer'
    
            // Remove the asset packs you don't need, these are also big in size.
            include 'assets:font-basic'
            include 'assets:frame-basic'
            include 'assets:filter-basic'
            include 'assets:overlay-basic'
            include 'assets:sticker-shapes'
            include 'assets:sticker-emoticons'
    
            include 'backend:sticker-smart'
            include 'backend:background-removal'
        }
    }

Usage

Import the module in your App.js:

import {
  PESDK,
  PhotoEditorModal,
  Configuration,
} from "react-native-photoeditorsdk";

Each platform requires a separate license file. Unlock PhotoEditor SDK with a single line of code for both platforms via platform-specific file extensions:

PESDK.unlockWithLicense(require("./pesdk_license"));

Open the editor with an image:

PESDK.openEditor(require("./image.jpg"));

Or use the component to open the editor:

<PhotoEditorModal visible={true} image={require("./image.jpg")} />

Please see the code documentation for more details and additional customization and configuration options.

For configuring and customizing PhotoEditor SDK beyond these options exposed to JavaScript the iOS bridge provides an interface for native customization. Please refer to our documentation for more details on native customization.

Example

Please see our example project which demonstrates how to use the React Native module for PhotoEditor SDK.

License Terms

Make sure you have a commercial license for PhotoEditor SDK before releasing your app. A commercial license is required for any app or service that has any form of monetization: This includes free apps with in-app purchases or ad supported applications. Please contact us if you want to purchase the commercial license.

Support and License

Use our service desk for bug reports or support requests. To request a commercial license, please use the license request form on our website.

More Repositories

1

background-removal-js

Remove backgrounds from images directly in the browser environment with ease and no additional costs or privacy concerns. Explore an interactive demo.
TypeScript
5,708
star
2

pesdk-ios-examples

A fully customizable photo editor for your app.
856
star
3

pesdk-android-demo

PhotoEditor SDK: A fully customizable photo editor for your app.
Java
623
star
4

imgly-sdk-html5

The most comprehensive photo editor SDK for web and mobile
574
star
5

rembrandt

Image comparison using node-canvas
JavaScript
292
star
6

pesdk-ios-build

PhotoEditor SDK: A fully customizable photo editor for your app.
Swift
152
star
7

vesdk-react-native

React Native module for VideoEditor SDK
TypeScript
144
star
8

vesdk-android-demo

VideoEditor SDK: A fully customizable video editor for your app.
Kotlin
144
star
9

pesdk-html5-build

PhotoEditor SDK: A fully customizable photo editor for your website.
JavaScript
131
star
10

vesdk-ios-build

VideoEditor SDK: A fully customizable video editor for your app.
Swift
102
star
11

pesdk-react-native-demo

React Native example for PhotoEditor SDK
Java
76
star
12

cesdk-web-examples

Examples Repository for CreativeEditor SDK
CSS
70
star
13

adonis

Adonis ❤️ Aphrodite
JavaScript
43
star
14

video-editor-wasm-react

A Video editor with Wasm and React running entire in the browser, includes simple trimming control and a button to convert the video to a git.
JavaScript
33
star
15

pesdk-wrapper-vuejs

[Deprecated] Vue.js plugin for PhotoEditor SDK
JavaScript
27
star
16

pesdk-flutter

Flutter plugin for PhotoEditor SDK
Swift
27
star
17

ui-design-system-generator

Design & Develop System. Kickstart your sketch project with atomic styles, support for theming and unified naming.
JavaScript
22
star
18

vesdk-flutter

Flutter plugin for VideoEditor SDK
Swift
21
star
19

pesdk-blog-instagram-ui

Code accompanying the 'How to build Instagram's Story Editor in a Day' blog post
Java
19
star
20

vesdk-react-native-demo

React Native example for VideoEditor SDK
JavaScript
17
star
21

catalog-android

A fully customizable photo and video editor for your app.
Kotlin
14
star
22

cesdk-android-examples

Examples repository for running CreativeEngine on Android in Kotlin
Kotlin
14
star
23

IMGLYUI-swift

Fully customizable, simple-to-use design editor
Swift
13
star
24

pesdk-react-demo

[Deprecated] PhotoEditor SDK integration example for ReactJS
JavaScript
10
star
25

pesdk-ionic-demo

Ionic plugin demo for PhotoEditorSDK iOS and Android
TypeScript
9
star
26

imgly-flutter

Flutter plugin for IMG.LY SDK
Dart
9
star
27

catalog-ios

A fully customizable photo and video editor for your app.
Swift
9
star
28

vesdk-ios-examples

A fully customizable video editor for your app.
9
star
29

pesdk-cordova

Cordova & Ionic plugin for PhotoEditor SDK
TypeScript
8
star
30

catalog-react-native

A fully customizable photo and video editor for your app.
TypeScript
8
star
31

pesdk-cordova-demo

Cordova plugin demo for PhotoEditor SDK iOS & Android
Java
8
star
32

catalog-flutter

A fully customizable photo and video editor for your app.
Dart
7
star
33

IMGLYEngine-swift

Fully customizable, simple-to-use design editor
Swift
7
star
34

cesdk-swift-examples

Examples repository for running CE.SDK's CreativeEngine in Swift
Swift
7
star
35

pesdk-angular-demo

[Deprecated]
TypeScript
5
star
36

pesdk-server-build

A fully customizable photo editor for your app.
JavaScript
4
star
37

canva-clone-react-cesdk

This project is a Canva clone built with React and IMG.LY’s CE.SDK, providing a powerful and intuitive design editor for creating invitations, greeting cards, flyers, postcards, and business cards.
CSS
4
star
38

imgly-react-native

React Native base module for PhotoEditor and VideoEditor SDK
JavaScript
3
star
39

vesdk-cordova-demo

Cordova demo for VideoEditorSDK iOS and Android
Java
2
star
40

vesdk-ionic-demo

Ionic plugin demo for VideoEditorSDK iOS and Android
TypeScript
2
star
41

plugins

Plugins enhance the capabilities of CreativeEditor SDK (CE.SDK) by allowing developers to create and integrate custom plugins.
TypeScript
2
star
42

vesdk-cordova

Cordova & Ionic plugin for VideoEditor SDK
TypeScript
2
star
43

cesdk-node-examples

Examples repository for running CE.SDK's CreativeEngine in Node.js
JavaScript
2
star
44

tiktok-clone-ios-cesdk

A TikTok clone built with Swift and IMG.LY's CE.SDK mobile video editor and camera
Swift
2
star
45

pesdk-web-plugins

TypeScript
1
star
46

pesdk-rails-demo

[Deprecated] Ruby on Rails Demo for PhotoEditorSDK HTML5
Ruby
1
star
47

pesdk-web-examples

Examples Repository for PhotoEditor SDK
TypeScript
1
star
48

psd-importer

Import PSD files into the Creative Editor Ecosystem
TypeScript
1
star