1
0
mirror of https://github.com/wasabeef/glide-transformations.git synced 2025-06-07 23:04:06 +08:00
This commit is contained in:
wasabeef 2015-09-16 22:49:01 +09:00
parent 7614f1326a
commit 1253147c4a
3 changed files with 8 additions and 8 deletions

View File

@ -76,7 +76,8 @@ android {
## Transformations
### Crop
`CropTransformation`, `CropCircleTransformation`, `CropSquareTransformation`
`CropTransformation`, `CropCircleTransformation`, `CropSquareTransformation`,
`RoundedCornersTransformation`
### Color
`ColorFilterTransformation`, `GrayscaleTransformation`
@ -84,14 +85,13 @@ android {
### Blur
`BlurTransformation`
### Filter (use [GPUImage](https://github.com/CyberAgent/android-gpuimage))
### GPU Filter (use [GPUImage](https://github.com/CyberAgent/android-gpuimage))
*Will require add dependencies for GPUImage.*
`ToonFilterTransformation`, `SepiaFilterTransformation`, `ContrastFilterTransformation`
`InvertFilterTransformation`, `PixelationFilterTransformation`, `SketchFilterTransformation`
`SwirlFilterTransformation`, `KuwaharaFilterTransformation`, `VignetteFilterTransformation`
### Other
`RoundedCornersTransformation`
Applications using Glide Transformations
---

View File

@ -1,5 +1,5 @@
VERSION_NAME=1.1.0
VERSION_CODE=9
VERSION_NAME=1.2.0
VERSION_CODE=10
GROUP=jp.wasabeef
ARTIFACT_ID=glide-transformations

View File

@ -16,7 +16,7 @@ android {
dependencies {
compile "com.github.bumptech.glide:glide:${GLIDE_VERSION}"
compile "jp.co.cyberagent.android.gpuimage:gpuimage-library:${GPUIMAGE_VERSION}"
provided "jp.co.cyberagent.android.gpuimage:gpuimage-library:${GPUIMAGE_VERSION}"
}
android.libraryVariants.all { variant ->