All Projects → mukeshsolanki → Photofilter

mukeshsolanki / Photofilter

Licence: mit
A simple easy to use library that lets you edit pictures on the fly with easy. Photo filter lets you apply a large number of filters all while maintaining maximum image quality. Supports Android 2.3 and higher.

Programming Languages

kotlin
9241 projects

Projects that are alternatives of or similar to Photofilter

Multiselectspinner
Android - Select Multiple Items from Spinner with Filtration.
Stars: ✭ 158 (-63.59%)
Mutual labels:  gradle, filter
Javafx Gradle Plugin
Gradle plugin for JavaFX
Stars: ✭ 425 (-2.07%)
Mutual labels:  gradle
Ms Backend Boilerplates
Boilerplate for Your Server Side(Backend) Application, Java | Spring(Boot, Cloud) | Node.js(Express, Koa, Egg) | Go | Python | DevOps 💫 服务端项目模板
Stars: ✭ 394 (-9.22%)
Mutual labels:  gradle
Tui.image Editor
🍞🎨 Full-featured photo image editor using canvas. It is really easy, and it comes with great filters.
Stars: ✭ 4,761 (+997%)
Mutual labels:  filter
Drawer Behavior
Drawer behavior is a library that provide an extra behavior on drawer, such as, move view or scaling view's height while drawer on slide.
Stars: ✭ 394 (-9.22%)
Mutual labels:  gradle
Django Advanced Filters
Add advanced filtering abilities to Django admin
Stars: ✭ 408 (-5.99%)
Mutual labels:  filter
Walkable
A Clojure(script) SQL library for building APIs: Datomic® (GraphQL-ish) pull syntax, data driven configuration, dynamic filtering with relations in mind
Stars: ✭ 384 (-11.52%)
Mutual labels:  filter
Gradle Xcodeplugin
gradle plugin for building Xcode Projects for iOS, watchOS, macOS or tvOS
Stars: ✭ 430 (-0.92%)
Mutual labels:  gradle
Ngx Mat Select Search
Angular component providing an input field for searching / filtering MatSelect options of the Angular Material library.
Stars: ✭ 416 (-4.15%)
Mutual labels:  filter
Gpuvideo Android
This library apply video filter on generate an Mp4 and on ExoPlayer video and Video Recording with Camera2.
Stars: ✭ 403 (-7.14%)
Mutual labels:  filter
Matchering
🎚️ Open Source Audio Matching and Mastering
Stars: ✭ 398 (-8.29%)
Mutual labels:  filter
Dryrun
☁️ Try the demo project of any Android Library
Stars: ✭ 3,845 (+785.94%)
Mutual labels:  gradle
Robust
Robust is an Android HotFix solution with high compatibility and high stability. Robust can fix bugs immediately without a reboot.
Stars: ✭ 4,125 (+850.46%)
Mutual labels:  gradle
Spring Boot Angular2
spring boot backend, angular2 frontend with webpack, typescript, sass, bootstrap4, karma, jasmine
Stars: ✭ 396 (-8.76%)
Mutual labels:  gradle
Gradle Plugin User Guide Chinese Verision
Gradle Plugin User Guide 中文翻译
Stars: ✭ 426 (-1.84%)
Mutual labels:  gradle
Gradle Maven Publish Plugin
Gradle plugin that configures an uploadArchives task to automatically upload all of your Java, Kotlin or Android libraries to any Maven instance.
Stars: ✭ 392 (-9.68%)
Mutual labels:  gradle
Boxes
Command line ASCII boxes unlimited!
Stars: ✭ 398 (-8.29%)
Mutual labels:  filter
Resizer
An image resizing library for Android
Stars: ✭ 406 (-6.45%)
Mutual labels:  gradle
Markdownview Android
MarkdownView is an Android webview with the capability of loading Markdown text or file and display it as HTML, it extends Android webview.
Stars: ✭ 432 (-0.46%)
Mutual labels:  gradle
Fmphotopicker
A modern, simple and zero-dependency photo picker with an elegant and customizable image editor
Stars: ✭ 428 (-1.38%)
Mutual labels:  filter

Photo Filter for Android

Support Photo Filter for Android

A simple easy to use library that lets you edit pictures on the fly with easy. Photo filter lets you apply a large number of filters all while maintaining maximum image quality. Supports Android 2.3 and higher. Photo filter is an independent project with ongoing development and support made possible thanks to donations made by these awesome backers. If you'd like to join them, please consider:

How to integrate into your app?

Integrating the library into you app is extremely easy. A few changes in the build gradle and your all ready to use the library. Make the following changes.

Step 1. Add the JitPack repository to your build file. Add it in your root build.gradle at the end of repositories:

allprojects {
  repositories {
    ...
    maven { url "https://jitpack.io" }
  }
}

Step 2. Add the dependency

dependencies {
        implementation 'com.github.mukeshsolanki:photofilter:<latest-version>'
}

How to use the library?

Okay seems like you integrated the library in your project but how do you use it? Well its really easy just follow the steps below.

 private var photoFilter = PhotoFilter(effectView, object: OnProcessingCompletionListener{
  override fun onProcessingComplete(bitmap: Bitmap) {
   // Do anything with the bitmap save it or add another effect to it
  }
 })

 photoFilter?.applyEffect(bitmap, AutoFix())

That's pretty much it and your all wrapped up.

Supported Filters

  • AutoFix
  • Brightness
  • Contrast
  • CrossProcess
  • Documentary
  • DuoTone
  • Fill-Light
  • FishEye
  • Flip Horizontally
  • Flip Vertically
  • Grain
  • Grayscale
  • Highlight
  • Lomoish
  • Negative
  • None
  • Posterize
  • Rotate
  • Saturate
  • Sepia
  • Sharpen
  • Temperature
  • Tint
  • Vignette

Screenshots

Original

Result

Author

Maintained by Mukesh Solanki

Contribution

GitHub contributors

License

Copyright (c) 2018 Mukesh Solanki

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
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].