zeeshux7860/ImageEditorPro
페인트, 텍스트, 필터, 이모지 및 스티커를 사용한 이미지 편집을 간단하고 쉽게 지원하는 이미지 편집 플러그인입니다. 스토리처럼요.
- Stars
- 243
- Forks
- 153
- 최근 푸시(UTC)
- 2024. 1. 24.
- 프로젝트 상태
- 활성
사용 중인 의존성
의존성 목록 16 개
- flutter
{"sdk":"flutter"} - cupertino_icons
^1.0.2 - zoom_widget
^0.1.3 - font_awesome_flutter
^9.0.0 - image_picker
^0.7.4 - path_provider
^2.0.1 - permission_handler
^7.0.0 - dio
^4.0.0 - screenshot
^0.3.0 - signature
^4.0.2 - flutter_colorpicker
^0.4.0 - firexcode
^1.0.5 - flutter_web_plugins
{"sdk":"flutter"} - collection
^1.15.0 - pedantic개발 의존성
^1.9.2 - flutter_test개발 의존성
{"sdk":"flutter"}
원본 README
아래는 영문 원문 스냅샷입니다. 최신 내용은 GitHub에서 확인하세요.
README 펼치기 / 접기
imagee_editor_pro_github
ImageEditorPro
Image Editor Plugin with simple, easy support for image editing using Paints, Text, Filters, Emoji and Sticker like stories.
To start with this, we need to simply add the dependencies in the gradle file of our app module like this
Installation
First, add image_editor_pro: as a dependency in your pubspec.yaml file.
Import
import 'package:image_editor_pro/image_editor_pro.dart';
iOS
Add the following keys to your Info.plist file, located in <project root>/ios/Runner/Info.plist:
NSPhotoLibraryUsageDescription- describe why your app needs permission for the photo library. This is called Privacy - Photo Library Usage Description in the visual editor.NSCameraUsageDescription- describe why your app needs access to the camera. This is called Privacy - Camera Usage Description in the visual editor.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.
Or in text format add the key:
<key>NSPhotoLibraryUsageDescription</key>
<string>Used to demonstrate image picker plugin</string>
<key>NSCameraUsageDescription</key>
<string>Used to demonstrate image picker plugin</string>
<key>NSMicrophoneUsageDescription</key>
<string>Used to capture audio for image picker plugin</string>
Android
No configuration required - the plugin should work out of the box.
Add this function to Your StateFull Widget Check the Example
Future<void> getimageditor() {
final geteditimage = Navigator.push(context, MaterialPageRoute(
builder: (context){
return ImageEditorPro(
appBarColor: Colors.blue,
bottomBarColor: Colors.blue,
);
}
)).then((geteditimage){
if(geteditimage != null){
setState(() {
_image = geteditimage;
});
}
}).catchError((er){print(er);});
}
Developed By
Special Thanks
Sanskar Tiwari
Credits
- This project is inspired from PhotoEditor by Burhanuddin Rashid
MIT License
Copyright (c) 2020 Zeeshux7860
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.