{"id":18671688,"url":"https://github.com/penseapp/image_editor_pro","last_synced_at":"2025-11-06T21:30:32.805Z","repository":{"id":40435232,"uuid":"387072894","full_name":"penseapp/image_editor_pro","owner":"penseapp","description":null,"archived":false,"fork":false,"pushed_at":"2022-10-31T17:56:51.000Z","size":13887,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-12-27T19:24:18.670Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Dart","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/penseapp.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-07-18T02:18:28.000Z","updated_at":"2021-11-19T02:01:06.000Z","dependencies_parsed_at":"2023-01-19T20:00:14.567Z","dependency_job_id":null,"html_url":"https://github.com/penseapp/image_editor_pro","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/penseapp%2Fimage_editor_pro","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/penseapp%2Fimage_editor_pro/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/penseapp%2Fimage_editor_pro/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/penseapp%2Fimage_editor_pro/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/penseapp","download_url":"https://codeload.github.com/penseapp/image_editor_pro/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239510174,"owners_count":19650925,"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":[],"created_at":"2024-11-07T09:06:47.221Z","updated_at":"2025-11-06T21:30:32.751Z","avatar_url":"https://github.com/penseapp.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n![imageeditorprogithub](https://user-images.githubusercontent.com/55942632/77652902-fedd9980-6f94-11ea-96d5-d31657590893.png)\n\n# ImageEditorPro\n\nImage Editor Plugin with simple, easy support for image editing using Paints, Text, Filters, Emoji and Sticker like stories.\n\nTo start with this, we need to simply add the dependencies in the gradle file of our app module like this\n\n## Installation\n\nFirst, add `image_editor_pro:` as a [dependency in your pubspec.yaml file](https://flutter.io/platform-plugins/).\n\nImport\n\n```dart\nimport 'package:image_editor_pro/image_editor_pro.dart';\n```\n\n### iOS\n\nAdd the following keys to your _Info.plist_ file, located in `\u003cproject root\u003e/ios/Runner/Info.plist`:\n\n* `NSPhotoLibraryUsageDescription` - describe why your app needs permission for the photo library. This is called _Privacy - Photo Library Usage Description_ in the visual editor.\n* `NSCameraUsageDescription` - describe why your app needs access to the camera. This is called _Privacy - Camera Usage Description_ in the visual editor.\n* `NSMicrophoneUsageDescription` - describe why your app needs access to the microphone, if you intend to record videos. This is called _Privacy - Microphone Usage Description_ in the visual editor.\n\nOr in text format add the key:\n\n``` xml\n\u003ckey\u003eNSPhotoLibraryUsageDescription\u003c/key\u003e\n\u003cstring\u003eUsed to demonstrate image picker plugin\u003c/string\u003e\n\u003ckey\u003eNSCameraUsageDescription\u003c/key\u003e\n\u003cstring\u003eUsed to demonstrate image picker plugin\u003c/string\u003e\n\u003ckey\u003eNSMicrophoneUsageDescription\u003c/key\u003e\n\u003cstring\u003eUsed to capture audio for image picker plugin\u003c/string\u003e\n```\n\n### Android\n\nNo configuration required - the plugin should work out of the box.\n\nAdd this function to Your StateFull Widget Check the [Example](https://github.com/zeeshux7860/Image_editor_pro_package/blob/master/example/lib/main.dart)\n\n```dart\n Future\u003cvoid\u003e getimageditor()  {\n    final geteditimage =   Navigator.push(context, MaterialPageRoute(\n        builder: (context){\n          return ImageEditorPro(\n            appBarColor: Colors.blue,\n            bottomBarColor: Colors.blue,\n          );\n        }\n    )).then((geteditimage){\n      if(geteditimage != null){\n        setState(() {\n          _image =  geteditimage;\n        });\n      }\n    }).catchError((er){print(er);});\n\n  }\n```\n\n## Developed By\n- [Zeeshan](https://www.linkedin.com/in/zeeshu-x-5190b41a1/)\n\n## Special Thanks\nSanskar Tiwari\n\n\n## Credits\n- This project is inspired from [PhotoEditor by Burhanuddin Rashid](https://github.com/burhanrashid52/PhotoEditor)\n\n\n## MIT License\n\nCopyright (c) 2020 Zeeshux7860\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpenseapp%2Fimage_editor_pro","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpenseapp%2Fimage_editor_pro","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpenseapp%2Fimage_editor_pro/lists"}