8000 GitHub - gx506578835/photofilter
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

gx506578835/photofilter

 
 

Repository files navigation

Photo Filter

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.

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 user Runtime permissions library. Make the following changes to build.gradle inside you app.

.....
dependencies {
  ...
  compile 'com.mukesh:photofilter:1.0.0'
}

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.

 ImageProcessor imageProcessor = new ImageProcessor();
 
 imageProcessor.doInvert(bitmap);

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

Supported Filters (Exposed Methods)

  • doHighlightImage
  • doInvert
  • doGreyScale
  • doGamma
  • doColorFilter
  • createSepiaToningEffect
  • decreaseColorDepth
  • createContrast
  • rotate
  • doBrightness
  • applyGaussianBlur
  • createShadow
  • sharpen
  • applyMeanRemoval
  • smooth
  • emboss
  • engrave
  • boost
  • roundCorner
  • waterMark
  • flip
  • tintImage
  • applyFleaEffect
  • applyBlackFilter
  • applySnowEffect
  • applyShadingFilter
  • applySaturationFilter
  • applyHueFilter
  • applyReflection
  • replaceColor

Screenshots

Original

### Result



You can check out more results here

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 100.0%
0