Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/isaac-udy/kfilter
A small Android/Kotlin library for adding image effects/filters to photos and videos
https://github.com/isaac-udy/kfilter
Last synced: 12 days ago
JSON representation
A small Android/Kotlin library for adding image effects/filters to photos and videos
- Host: GitHub
- URL: https://github.com/isaac-udy/kfilter
- Owner: isaac-udy
- License: apache-2.0
- Created: 2018-01-21T01:59:05.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2022-01-16T12:49:03.000Z (almost 3 years ago)
- Last Synced: 2023-02-28T15:42:06.908Z (over 1 year ago)
- Language: Kotlin
- Size: 7.53 MB
- Stars: 43
- Watchers: 3
- Forks: 12
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
> [!WARNING]
> This project is not actively maintained and has not been actively maintained since pre-2020.# Kfilter
Kfilter is a small image processing library. Kfilter aims to provide a simple interface to create photo and video filters as you would find in applications such as Snapchat or Instagram.
![Example GIF](.resources/kfilter_sample_1.gif)
### Why use Kfilter?
* One filter system that works for both photos and videos
* Preview a filter before applying, including swipe to select between multiple filters
* Use a simple builder interface to create filters
* Or write your own GLSL fragment shader to create *any* filter you can imagine### Why the "K"?
Kfilter get's it's "K" from Kotlin. Kfilter was written in Kotlin, and is a Kotlin first library. You'll be able to use it with Java, but you'll have a lot more `fun` if you use Kotlin!
## Upcoming Features
* Improved SimpleKfilter builder more options
* Advanced node base Kfilter builder modelled after node based shader editors
* Built in media controls for videos
* A fully fleshed out sample app## Download
Kfilter uses [JitPack.io](www.jitpack.io) to deploy dependencies. To use Kfilter, add the following to your project and module `build.gradle` files:
```
allprojects {
repositories {
jcenter()
maven { url "https://jitpack.io" }
}
}
```
```
dependencies {
compile 'com.github.isaac-udy:Kfilter:1.1.3'
}
```### Special Thanks
This library would not have been possible without the awesome resources provided by [Grafika](https://github.com/google/grafika) and the [Android Media Codec CTS Tests](http://bigflake.com/mediacodec/).The [Instagram_Filter](https://github.com/yulu/Instagram_Filter) library also served as a source for some nicer looking default filters.
### 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
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.