Skip to content

Simple Android library to pixelate images or certain areas of an image.

License

Notifications You must be signed in to change notification settings

guerrillalg/Pixelate

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

42 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Twitter

Pixelate

Simple Android library to pixelate images or certain areas of an image.

Usage

Simply instantiate Pixelate, give it a bitmap and set the density. This will pixelate your whole image.

new Pixelate(getBitmap())
		.setDensity(12)
		.setListener(this)
		.make();

If you want it to work with your ImageView and only pixelate a certain area:

new Pixelate(imageView)
		.setArea(x, y, width, height)
		.setDensity(density)
		.make();

Use the OnPixelateListener to handle the bitmap yourself after it being processed.

void onPixelated(Bitmap bitmap, int density) {

}

Download

Available via Maven:

compile 'nl.dionsegijn:pixelate:1.1.0'

License

Copyright 2015 Dion Segijn

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

   http://www.apache.org/licenses/LICENSE-2.0

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.

About

Simple Android library to pixelate images or certain areas of an image.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 100.0%