All Projects → wasabeef → Picasso Transformations

wasabeef / Picasso Transformations

Licence: apache-2.0
An Android transformation library providing a variety of image transformations for Picasso

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Picasso Transformations

Triangle
Convert images to computer generated art using delaunay triangulation.
Stars: ✭ 1,838 (+8.37%)
Mutual labels:  image-processing
Dithergo
Various dithering algorithms implemented in Go
Stars: ✭ 128 (-92.45%)
Mutual labels:  image-processing
Nuxt Image Loader Module
An image loader module for nuxt.js that allows you to configure image style derivatives.
Stars: ✭ 135 (-92.04%)
Mutual labels:  image-processing
Unflattener
Make normal maps for 2D art
Stars: ✭ 125 (-92.63%)
Mutual labels:  image-processing
Inpaint
✏️ Inpaint is a C++ library providing image inpainting algorithms
Stars: ✭ 126 (-92.57%)
Mutual labels:  image-processing
Spacechop
HTTP service for high-level image processing with first-class Docker support.
Stars: ✭ 133 (-92.16%)
Mutual labels:  image-processing
Open Solution Salt Identification
Open solution to the TGS Salt Identification Challenge
Stars: ✭ 124 (-92.69%)
Mutual labels:  image-processing
Pubgis
Generate maps of your position throughout PUBG gameplay
Stars: ✭ 135 (-92.04%)
Mutual labels:  image-processing
Color Tracker
Color tracking with OpenCV
Stars: ✭ 128 (-92.45%)
Mutual labels:  image-processing
Cloudinary ios
Cloudinary iOS SDK
Stars: ✭ 133 (-92.16%)
Mutual labels:  image-processing
Blur Detection
Some implementations of algorithms for blur detection in JPEGs
Stars: ✭ 125 (-92.63%)
Mutual labels:  image-processing
Lerc
Limited Error Raster Compression
Stars: ✭ 126 (-92.57%)
Mutual labels:  image-processing
Ffcc
Fast Fourier Color Constancy: an auto white balance solution with machine learning in Fourier space
Stars: ✭ 133 (-92.16%)
Mutual labels:  image-processing
Slic Python Implementation
🖼The python implementation to make superpixels by slic.
Stars: ✭ 125 (-92.63%)
Mutual labels:  image-processing
Filepond
🌊 A flexible and fun JavaScript file upload library
Stars: ✭ 11,869 (+599.82%)
Mutual labels:  image-processing
Jquery Filepond
🔌 A handy FilePond wrapper for jQuery
Stars: ✭ 124 (-92.69%)
Mutual labels:  image-processing
Deepfriedmemes.com
🅱️ Deep fries your pics. Serve with laundry sauce.
Stars: ✭ 131 (-92.28%)
Mutual labels:  image-processing
Imjoy
ImJoy: Deep Learning Made Easy!
Stars: ✭ 136 (-91.98%)
Mutual labels:  image-processing
Easyocr
Ready-to-use OCR with 80+ supported languages and all popular writing scripts including Latin, Chinese, Arabic, Devanagari, Cyrillic and etc.
Stars: ✭ 13,379 (+688.86%)
Mutual labels:  image-processing
Ssocr
Seven Segment Optical Character Recognition
Stars: ✭ 133 (-92.16%)
Mutual labels:  image-processing

Picasso Transformations

Android Arsenal License Maven Central

An Android transformation library providing a variety of image transformations for Picasso.

Please feel free to use this.

Are you using Glide or Fresco?

Glide Transformations
Fresco Processors

Demo

Original Image

Transformations

How do I use it?

Step 1

Gradle

repositories {
    mavenCentral()
}

dependencies {
    compile 'jp.wasabeef:picasso-transformations:2.4.0'
    // If you want to use the GPU Filters
    compile 'jp.co.cyberagent.android:gpuimage:2.1.0
}

Step 2

Set Picasso Transform.

Picasso.with(mContext).load(R.drawable.demo)
    .transform(transformation).into((ImageView) findViewById(R.id.image));

Advanced Step 3

You can set a multiple transformations.

Picasso.with(mContext).load(R.drawable.demo)
    .transform(transformation)
    .transform(new CropCircleTransformation())
    .into(holder.image);

Transformations

Crop

CropTransformation, CropCircleTransformation, CropSquareTransformation, RoundedCornersTransformation

Color

ColorFilterTransformation, GrayscaleTransformation

Blur

BlurTransformation

Mask

MaskTransformation

GPU Filter (use GPUImage)

Will require add dependencies for GPUImage.

ToonFilterTransformation, SepiaFilterTransformation, ContrastFilterTransformation InvertFilterTransformation, PixelationFilterTransformation, SketchFilterTransformation SwirlFilterTransformation, BrightnessFilterTransformation, KuwaharaFilterTransformation VignetteFilterTransformation

Applications using Picasso Transformations

Please ping me or send a pull request if you would like to be added here.

Icon Application
Ameba Ownd
QuitNow!

Developed By

Daichi Furiya (Wasabeef) - [email protected]

Follow me on Twitter

Thanks

License

Copyright (C) 2020 Wasabeef

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