{"id":13614348,"url":"https://github.com/hgayan7/FilterLibrary","last_synced_at":"2025-04-13T18:32:52.008Z","repository":{"id":100467645,"uuid":"103025394","full_name":"hgayan7/FilterLibrary","owner":"hgayan7","description":"Android filter library -This library has 16 filters which can be applied to image bitmaps.","archived":false,"fork":false,"pushed_at":"2023-12-01T08:21:19.000Z","size":416,"stargazers_count":40,"open_issues_count":1,"forks_count":9,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-11-07T22:42:24.453Z","etag":null,"topics":["android","android-application","android-filter-library","bitmap","effects","filter","image","imageprocessing","java","library","photofilter","renderscript"],"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/hgayan7.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-09-10T11:52:13.000Z","updated_at":"2024-02-04T10:31:44.000Z","dependencies_parsed_at":"2024-07-07T00:48:55.415Z","dependency_job_id":null,"html_url":"https://github.com/hgayan7/FilterLibrary","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hgayan7%2FFilterLibrary","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hgayan7%2FFilterLibrary/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hgayan7%2FFilterLibrary/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hgayan7%2FFilterLibrary/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hgayan7","download_url":"https://codeload.github.com/hgayan7/FilterLibrary/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248760621,"owners_count":21157395,"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-application","android-filter-library","bitmap","effects","filter","image","imageprocessing","java","library","photofilter","renderscript"],"created_at":"2024-08-01T20:01:00.443Z","updated_at":"2025-04-13T18:32:50.994Z","avatar_url":"https://github.com/hgayan7.png","language":"Java","funding_links":[],"categories":[":shamrock:  **Categories**"],"sub_categories":[":books: Libraries"],"readme":"[![Generic badge](https://img.shields.io/badge/Himshikhar-Gayan-RED.svg)](https://shields.io/)\n[![contributions welcome](https://img.shields.io/badge/contributions-welcome-brightgreen.svg?style=flat)](https://github.com/hgayan7/FilterLibrary/issues)\n[![GitHub contributors](https://img.shields.io/github/contributors/Naereen/StrapDown.js.svg)](https://github.com/hgayan7/FilterLibrary/graphs/contributors/)\n[![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=103)](https://github.com/ellerbrock/open-source-badges/)\n\n\n# FilterLibrary                        \n\nEasy to use android image filter library.\n\n[![](https://sourcerer.io/fame/hgayan7/hgayan7/FilterLibrary/images/0)](https://sourcerer.io/fame/hgayan7/hgayan7/FilterLibrary/links/0)[![](https://sourcerer.io/fame/hgayan7/hgayan7/FilterLibrary/images/1)](https://sourcerer.io/fame/hgayan7/hgayan7/FilterLibrary/links/1)[![](https://sourcerer.io/fame/hgayan7/hgayan7/FilterLibrary/images/2)](https://sourcerer.io/fame/hgayan7/hgayan7/FilterLibrary/links/2)[![](https://sourcerer.io/fame/hgayan7/hgayan7/FilterLibrary/images/3)](https://sourcerer.io/fame/hgayan7/hgayan7/FilterLibrary/links/3)[![](https://sourcerer.io/fame/hgayan7/hgayan7/FilterLibrary/images/4)](https://sourcerer.io/fame/hgayan7/hgayan7/FilterLibrary/links/4)[![](https://sourcerer.io/fame/hgayan7/hgayan7/FilterLibrary/images/5)](https://sourcerer.io/fame/hgayan7/hgayan7/FilterLibrary/links/5)[![](https://sourcerer.io/fame/hgayan7/hgayan7/FilterLibrary/images/6)](https://sourcerer.io/fame/hgayan7/hgayan7/FilterLibrary/links/6)[![](https://sourcerer.io/fame/hgayan7/hgayan7/FilterLibrary/images/7)](https://sourcerer.io/fame/hgayan7/hgayan7/FilterLibrary/links/7)\n\n### Step 1. Add the JitPack repository to your build file\n\nAdd it in your root build.gradle at the end of repositories:\n``` java\n\nallprojects \n{\n\trepositories \n\t{\n\t\tmaven { url 'https://jitpack.io' }\n\t}\n}\n```\n\n### Step 2. Add the dependency\n ``` java\t\n \ndependencies \n{\n\tcompile 'com.github.hgayan7:FilterLibrary:0.1.0'\n}\n ``` \n \n ### Sample code:\n  ``` java\n  \n  ImageView myImageView1,myImageView2;\n  Bitmap myBitmap1,myBItmap2;\n  \n  PhotoFilter photoFilter;\n  \n  myImageView1 = findViewById(R.id.imageView1);\n  myBitmap1 = BitmapFactory.decodeResource(getResources(),R.drawable.myImage1);\n  \n  myImageView2 = findViewById(R.id.imageView2);\n  myBitmap2 = BitmapFactory.decodeResource(getResources(),R.drawable.myImage2);\n  \n  photoFilter = new PhotoFilter();\n  \n  // using filter 'one'\n  myImageView1.setImageBitmap(photoFilter.one(getApplicationContext(),myBitmap1));\n  \n  // using filter 'sixteen'\n  myImageView2.setImageBitmap(photoFilter.sixteen(getApplicationContext(),myBitmap2));\n  \n  ```\n## Screenshots :\n\n### Original image :\n\n\n\u003cp align=\"center\"\u003e\n  \u003cimg width=\"350\" height=\"250\" src=\"https://user-images.githubusercontent.com/29502161/50734591-55f82280-11c7-11e9-8fb9-0e1c544c73d8.jpeg\"\u003e\n\u003c/p\u003e\n\n\n### Images using filters :\n\n\u003cp align=\"center\" \u003e\n  \u003cimg width=\"350\" height=\"250\" src=\"https://user-images.githubusercontent.com/29502161/50734598-6c05e300-11c7-11e9-82a9-321b043c38e4.jpeg\" hspace=\"20\"\u003e\n  \u003cimg width=\"350\" height=\"250\" src=\"https://user-images.githubusercontent.com/29502161/50734599-6dcfa680-11c7-11e9-9b0d-b957a567610f.jpeg\" hspace=\"20\"\u003e\t\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003cimg width=\"350\" height=\"250\" src=\"https://user-images.githubusercontent.com/29502161/50734600-6f00d380-11c7-11e9-94cc-f8c8cfef3533.jpeg\" hspace=\"20\"\u003e\n  \u003cimg width=\"350\" height=\"250\" src=\"https://user-images.githubusercontent.com/29502161/50734601-70320080-11c7-11e9-995a-db77b66a1012.jpeg\" hspace=\"20\"\u003e\t\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003cimg width=\"350\" height=\"250\" src=\"https://user-images.githubusercontent.com/29502161/50734604-732cf100-11c7-11e9-9fbd-1e55ddb5631e.jpeg\" hspace=\"20\"\u003e\n  \u003cimg width=\"350\" height=\"250\" src=\"https://user-images.githubusercontent.com/29502161/50734603-71632d80-11c7-11e9-8cc5-c13b080a06dc.jpeg\" hspace=\"20\"\u003e\t\n\u003c/p\u003e\n\n## License\n\n```\n  Copyright 2019 Himshikhar Gayan\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```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhgayan7%2FFilterLibrary","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhgayan7%2FFilterLibrary","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhgayan7%2FFilterLibrary/lists"}