All Projects → DanielMartinus → Pixelate

DanielMartinus / Pixelate

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

Projects that are alternatives of or similar to Pixelate

Zpix Pixel Font
Zpix (最像素) is a pixel font supporting English, Traditional Chinese, Simplified Chinese and Japanese.
Stars: ✭ 916 (+52.16%)
Mutual labels:  bitmap, pixel
Bitmap
C++ Bitmap Library
Stars: ✭ 125 (-79.24%)
Mutual labels:  image-processing, bitmap
Pixelizator
Swift/Python image pixelizer 🖼️.
Stars: ✭ 53 (-91.2%)
Mutual labels:  image-processing, pixel
Lerc
Limited Error Raster Compression
Stars: ✭ 126 (-79.07%)
Mutual labels:  image-processing, pixel
Triangle
Convert images to computer generated art using delaunay triangulation.
Stars: ✭ 1,838 (+205.32%)
Mutual labels:  image-processing, pixel
Gaussianblur
An easy and fast library to apply gaussian blur filter on any images. 🎩
Stars: ✭ 473 (-21.43%)
Mutual labels:  image-processing, bitmap
Pycnn
Image Processing with Cellular Neural Networks in Python
Stars: ✭ 509 (-15.45%)
Mutual labels:  image-processing
Glidebitmappool
Glide Bitmap Pool is a memory management library for reusing the bitmap memory
Stars: ✭ 544 (-9.63%)
Mutual labels:  bitmap
Qupath
QuPath - Bioimage analysis & digital pathology
Stars: ✭ 503 (-16.45%)
Mutual labels:  image-processing
Sketch Code
Keras model to generate HTML code from hand-drawn website mockups. Implements an image captioning architecture to drawn source images.
Stars: ✭ 4,544 (+654.82%)
Mutual labels:  image-processing
Libvips
A fast image processing library with low memory needs.
Stars: ✭ 6,094 (+912.29%)
Mutual labels:  image-processing
Vehicle counting tensorflow
🚘 "MORE THAN VEHICLE COUNTING!" This project provides prediction for speed, color and size of the vehicles with TensorFlow Object Counting API.
Stars: ✭ 582 (-3.32%)
Mutual labels:  image-processing
Blurry
Blurry is an easy blur library for Android
Stars: ✭ 5,092 (+745.85%)
Mutual labels:  image-processing
Imagesharp
📷 A modern, cross-platform, 2D Graphics library for .NET
Stars: ✭ 5,186 (+761.46%)
Mutual labels:  image-processing
Pytorch Cyclegan
A clean and readable Pytorch implementation of CycleGAN
Stars: ✭ 558 (-7.31%)
Mutual labels:  image-processing
Ployfun
LowPoly image processing./导入图片生成Low Poly风格图片的app
Stars: ✭ 507 (-15.78%)
Mutual labels:  bitmap
Pixload
Image Payload Creating/Injecting tools
Stars: ✭ 586 (-2.66%)
Mutual labels:  image-processing
Tiler
Tiler is a tool to create an image using all kinds of other smaller images (tiles). It is different from other mosaic tools since it can adapt to tiles with multiple shapes and sizes (i.e. not limited to squares).
Stars: ✭ 4,681 (+677.57%)
Mutual labels:  image-processing
Flipsidecamera
The camera app that takes pictures from both sides of your world ! 📷
Stars: ✭ 535 (-11.13%)
Mutual labels:  image-processing
Color Thief Php
Grabs the dominant color or a representative color palette from an image. Uses PHP and GD, Imagick or Gmagick.
Stars: ✭ 564 (-6.31%)
Mutual labels:  image-processing

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