{"id":13786864,"url":"https://github.com/wasabeef/picasso-transformations","last_synced_at":"2025-05-15T02:08:15.345Z","repository":{"id":25741007,"uuid":"29178568","full_name":"wasabeef/picasso-transformations","owner":"wasabeef","description":"An Android transformation library providing a variety of image transformations for Picasso","archived":false,"fork":false,"pushed_at":"2021-02-14T13:09:31.000Z","size":35052,"stargazers_count":1691,"open_issues_count":16,"forks_count":240,"subscribers_count":53,"default_branch":"main","last_synced_at":"2025-04-14T00:57:40.052Z","etag":null,"topics":["android","android-library","image-processing"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/wasabeef.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null},"funding":{"github":"wasabeef","patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"custom":null}},"created_at":"2015-01-13T07:43:23.000Z","updated_at":"2025-03-18T01:44:45.000Z","dependencies_parsed_at":"2022-09-15T21:42:14.981Z","dependency_job_id":null,"html_url":"https://github.com/wasabeef/picasso-transformations","commit_stats":null,"previous_names":[],"tags_count":13,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wasabeef%2Fpicasso-transformations","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wasabeef%2Fpicasso-transformations/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wasabeef%2Fpicasso-transformations/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wasabeef%2Fpicasso-transformations/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wasabeef","download_url":"https://codeload.github.com/wasabeef/picasso-transformations/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254259384,"owners_count":22040820,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["android","android-library","image-processing"],"created_at":"2024-08-03T20:00:20.078Z","updated_at":"2025-05-15T02:08:15.297Z","avatar_url":"https://github.com/wasabeef.png","language":"Java","funding_links":["https://github.com/sponsors/wasabeef"],"categories":["Library","Libs"],"sub_categories":["\u003cA NAME=\"Image_Loading\"\u003e\u003c/A\u003eImage Loading"],"readme":"Picasso Transformations\n======================\n[![Android Arsenal](https://img.shields.io/badge/Android%20Arsenal-picasso--transformations-brightgreen.svg?style=flat)](https://android-arsenal.com/details/1/1372)\n[![License](https://img.shields.io/badge/license-Apache%202-blue.svg)](https://www.apache.org/licenses/LICENSE-2.0)\n[![Maven Central](https://maven-badges.herokuapp.com/maven-central/jp.wasabeef/picasso-transformations/badge.svg)](https://search.maven.org/artifact/jp.wasabeef/picasso-transformations)\n\nAn Android transformation library providing a variety of image transformations for [Picasso](https://github.com/square/picasso).\n\nPlease feel free to use this.\n\n\n#### Are you using Glide or Fresco?\n[Glide Transformations](https://github.com/wasabeef/glide-transformations)  \n[Fresco Processors](https://github.com/wasabeef/fresco-processors)\n \n# Demo\n\n### Original Image\n\u003cimg src=\"art/demo-org.jpg\" width=\"30%\"\u003e\n\n### Transformations\n\u003cimg src=\"art/demo.gif\" width=\"50%\"\u003e\n\n# How do I use it?\n\n## Step 1\n\n#### Gradle\n```groovy\nrepositories {\n    mavenCentral()\n}\n\ndependencies {\n    compile 'jp.wasabeef:picasso-transformations:2.4.0'\n    // If you want to use the GPU Filters\n    compile 'jp.co.cyberagent.android:gpuimage:2.1.0\n}\n```\n\n## Step 2\n\nSet Picasso Transform.\n\n```java\nPicasso.with(mContext).load(R.drawable.demo)\n    .transform(transformation).into((ImageView) findViewById(R.id.image));\n```\n\n## Advanced Step 3\n\nYou can set a multiple transformations.\n\n```java\nPicasso.with(mContext).load(R.drawable.demo)\n    .transform(transformation)\n    .transform(new CropCircleTransformation())\n    .into(holder.image);\n```\n\n## Transformations\n\n### Crop\n`CropTransformation`, `CropCircleTransformation`, `CropSquareTransformation`,\n`RoundedCornersTransformation`\n\n### Color\n`ColorFilterTransformation`, `GrayscaleTransformation`\n\n### Blur\n`BlurTransformation`\n\n### Mask\n`MaskTransformation`\n\n### GPU Filter (use [GPUImage](https://github.com/CyberAgent/android-gpuimage))\n**Will require add dependencies for GPUImage.**\n\n`ToonFilterTransformation`, `SepiaFilterTransformation`, `ContrastFilterTransformation`\n`InvertFilterTransformation`, `PixelationFilterTransformation`, `SketchFilterTransformation`\n`SwirlFilterTransformation`, `BrightnessFilterTransformation`, `KuwaharaFilterTransformation`\n`VignetteFilterTransformation`\n\n\nApplications using Picasso Transformations\n---\n\nPlease [ping](mailto:dadadada.chop@gmail.com) me or send a pull request if you would like to be added here.\n\nIcon | Application\n------------ | -------------\n\u003cimg src=\"https://lh6.ggpht.com/6zKH_uQY1bxCwXL4DLo_uoFEOXdShi3BgmN6XRHlaJ-oA1svmq6y1PZkmO50nWQn2Lg=w300-rw\" width=\"48\" height=\"48\" /\u003e | [Ameba Ownd](https://play.google.com/store/apps/details?id=jp.co.cyberagent.madrid)\n\u003cimg src=\"http://quitnowapp.com/xtra/QuitNow!-114.png\" width=\"48\" height=\"48\" /\u003e | [QuitNow!](https://play.google.com/store/apps/details?id=com.EAGINsoftware.dejaloYa)\n\nDeveloped By\n-------\nDaichi Furiya (Wasabeef) - \u003cdadadada.chop@gmail.com\u003e\n\n\u003ca href=\"https://twitter.com/wasabeef_jp\"\u003e\n\u003cimg alt=\"Follow me on Twitter\"\nsrc=\"https://raw.githubusercontent.com/wasabeef/art/master/twitter.png\" width=\"75\"/\u003e\n\u003c/a\u003e\n\nThanks\n-------\n\n* Inspired by `Picasso Transformations` in [TannerPerrien](https://github.com/TannerPerrien).\n\nLicense\n-------\n\n    Copyright (C) 2020 Wasabeef\n\n    Licensed under the Apache License, Version 2.0 (the \"License\");\n    you may not use this file except in compliance with the License.\n    You may obtain a copy of the License at\n\n       http://www.apache.org/licenses/LICENSE-2.0\n\n    Unless required by applicable law or agreed to in writing, software\n    distributed under the License is distributed on an \"AS IS\" BASIS,\n    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    See the License for the specific language governing permissions and\n    limitations under the License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwasabeef%2Fpicasso-transformations","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwasabeef%2Fpicasso-transformations","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwasabeef%2Fpicasso-transformations/lists"}