All Projects → DroidNinja → Whatsapp Like Photoeditor

DroidNinja / Whatsapp Like Photoeditor

A library module that tries to mimic whatsapp photo editor.

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Whatsapp Like Photoeditor

Photodemon
A free portable photo editor focused on pro-grade features, high performance, and maximum usability.
Stars: ✭ 356 (+194.21%)
Mutual labels:  image-processing, image-editor
Agimagecontrols
cool tools for image edition
Stars: ✭ 217 (+79.34%)
Mutual labels:  image-processing, filters
Opencv Face Filters
Snapchat-like Face Filters in OpenCV
Stars: ✭ 51 (-57.85%)
Mutual labels:  image-processing, filters
Photoeditor
A Photo Editor library with simple, easy support for image editing using paints,text,filters,emoji and Sticker like stories.
Stars: ✭ 3,105 (+2466.12%)
Mutual labels:  image-processing, filters
Pesdk Android Demo
A fully customizable photo editor for your app.
Stars: ✭ 464 (+283.47%)
Mutual labels:  image-processing, image-editor
Gaussianblur
An easy and fast library to apply gaussian blur filter on any images. 🎩
Stars: ✭ 473 (+290.91%)
Mutual labels:  image-processing, filters
Gift
Go Image Filtering Toolkit
Stars: ✭ 1,473 (+1117.36%)
Mutual labels:  image-processing, filters
Whatsapp Api
Rest API to send messages through whatsapp
Stars: ✭ 112 (-7.44%)
Mutual labels:  whatsapp
Reproducible Image Denoising State Of The Art
Collection of popular and reproducible image denoising works.
Stars: ✭ 1,776 (+1367.77%)
Mutual labels:  image-processing
Eos
A lightweight 3D Morphable Face Model fitting library in modern C++14
Stars: ✭ 1,579 (+1204.96%)
Mutual labels:  image-processing
Insta Chat
InstaChat offers a new way to read messages of your favourite messengers. It overlays every other app and you can reply from anywhere you want.
Stars: ✭ 111 (-8.26%)
Mutual labels:  whatsapp
Mindboggle
Automated anatomical brain label/shape analysis software (+ website)
Stars: ✭ 112 (-7.44%)
Mutual labels:  image-processing
Whatsapp Analyzer
Analyze Whatsapp chat
Stars: ✭ 117 (-3.31%)
Mutual labels:  whatsapp
Swiftyimages
A set of efficient extensions and classes for manipulating images and colors.
Stars: ✭ 111 (-8.26%)
Mutual labels:  image-processing
Ios
Tinodios: Tinode Messaging Client for iOS
Stars: ✭ 119 (-1.65%)
Mutual labels:  whatsapp
Ios Rubik Solver
An iOS app that detects a 3x3 Rubik's cube, recognizes the color of all cubies, solves it and provides a 3D visualisation of the solving process.
Stars: ✭ 111 (-8.26%)
Mutual labels:  image-processing
Mirtk
The Medical Image Registration ToolKit (MIRTK), the successor of the IRTK, contains common CMake build configuration files, core libraries, and basic command-line tools. Extension packages are hosted by the MIRTK GitHub group at
Stars: ✭ 119 (-1.65%)
Mutual labels:  image-processing
Dali
An image processor service
Stars: ✭ 119 (-1.65%)
Mutual labels:  image-processing
Overmix
Automatic anime screenshot stitching in high quality
Stars: ✭ 114 (-5.79%)
Mutual labels:  image-processing
Serverless Docker Image Resize
Simple serverless image resize on-the-fly - Deploy with one command - Built with AWS Lambda and S3
Stars: ✭ 114 (-5.79%)
Mutual labels:  image-processing

Whatsapp-Like-PhotoEditor

It is a library module that tries to mimic the whatsapp photoeditor. There are many things on which work needs to be done.

TODO

  • Fix cropping issue (needs to mimic whatsapp on this)
  • Remove ugly code
  • Convert code to kotlin
  • Publish on maven

demo demo demo demo demo

Usage

 ImageEditor.Builder(this, imagePath)
                .setStickerAssets("stickers")
                .disable(ImageEditor.EDITOR_TEXT) //to disable something
                .open()

Here setStickerAssets() methods takes folder name of stickers in the assets. Checkout sample if confused. You will get the result in onActivityResult

override fun onActivityResult(requestCode: Int, resultCode: Int, data: Intent?) {
    super.onActivityResult(requestCode, resultCode, data)
    when (requestCode) {
      ImageEditor.RC_IMAGE_EDITOR ->
        if (resultCode == Activity.RESULT_OK && data != null) {
          val imagePath: String = data.getStringExtra(ImageEditor.EXTRA_EDITED_PATH)
          edited_image.setImageBitmap(BitmapFactory.decodeFile(imagePath))
        }
    }
  }

Projects that helped

ImageEditor-Android

Android-Image-Cropper

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].