All Projects → taijuan → image_picker_flutter

taijuan / image_picker_flutter

Licence: other
ImagePicker

Programming Languages

dart
5743 projects
swift
15916 projects
kotlin
9241 projects
java
68154 projects - #9 most used programming language
ruby
36898 projects - #4 most used programming language
objective c
16641 projects - #2 most used programming language
shell
77523 projects

Projects that are alternatives of or similar to image picker flutter

Bsimagepicker
A multiple image picker for iOS
Stars: ✭ 1,171 (+4237.04%)
Mutual labels:  image-picker
Ios Nbuimagepicker
Modular image picker with Simulator-compatible AVFondation camera, assets library, filters and more.
Stars: ✭ 196 (+625.93%)
Mutual labels:  image-picker
advance image picker
Flutter plugin for selecting multiple images from the Android and iOS image library, taking new pictures with the camera, and edit them before using such as rotating, cropping, adding sticker/filters.
Stars: ✭ 91 (+237.04%)
Mutual labels:  image-picker
Mtimagepicker
A WeiXin like multiple imagepicker and video picker using either PhotoKit or AssetsLibrary
Stars: ✭ 79 (+192.59%)
Mutual labels:  image-picker
Photopicker
简洁、高效的Android图片选择库,支持图片压缩、裁剪,支持多图选择
Stars: ✭ 138 (+411.11%)
Mutual labels:  image-picker
Facebookimagepicker
FacebookImagePicker is Facebook album photo picker written in Swift.
Stars: ✭ 220 (+714.81%)
Mutual labels:  image-picker
React Native Image Picker
🌄 A React Native module that allows you to use native UI to select media from the device library or directly from the camera.
Stars: ✭ 7,431 (+27422.22%)
Mutual labels:  image-picker
debty-v2
Android debts management app
Stars: ✭ 41 (+51.85%)
Mutual labels:  android-kotlin
Unimgpicker
Image picker for Unity iOS/Android
Stars: ✭ 148 (+448.15%)
Mutual labels:  image-picker
Daguerre
Local image and video selector for Android
Stars: ✭ 33 (+22.22%)
Mutual labels:  image-picker
Image Picker
An easy to use, highly configurable image picker for your chat application.
Stars: ✭ 94 (+248.15%)
Mutual labels:  image-picker
Kotlin Playground
Kotlin practice
Stars: ✭ 111 (+311.11%)
Mutual labels:  image-picker
Imagepicker
Android下的图片选择与裁剪开源库(android image picker and cropper library)
Stars: ✭ 223 (+725.93%)
Mutual labels:  image-picker
Gallerypicker
Gallery Picker allows you to design a custom gallery for image/ video picker in your android projects.
Stars: ✭ 76 (+181.48%)
Mutual labels:  image-picker
podcast-app
Podcast App
Stars: ✭ 291 (+977.78%)
Mutual labels:  android-kotlin
Weex Image Crop Picker
iOS/Android image picker with support for camera, configurable compression, multiple images and cropping porting from
Stars: ✭ 42 (+55.56%)
Mutual labels:  image-picker
Image Upload Example
Demonstration of how to upload images from the ImagePicker, using a node backend to upload to S3
Stars: ✭ 214 (+692.59%)
Mutual labels:  image-picker
image-picka
A Firefox/Chrome extension helping you download images.
Stars: ✭ 114 (+322.22%)
Mutual labels:  image-picker
FancyDialog
Kotlin + DSL风格代替传统的Builder模式 诸多可配置项 高阶函数代替自定义回调接口 书写起来超级顺手
Stars: ✭ 24 (-11.11%)
Mutual labels:  android-kotlin
DiagonalDrawable
🙅‍♂️ A Diagonal Drawable for backgrounds, etc.
Stars: ✭ 24 (-11.11%)
Mutual labels:  android-kotlin

image_picker_flutter pub package

功能介绍

  • 该插件目前支持IOS(8-13)、Android(16-29)
  • 支持单选、多选
  • 提供拍照、视频录制功能
  • 支持多种图片格式PNG、JPG、GIF等,Flutter不支持的图片格式通过IOS、Android原生方法提供支持
  • 支持多种视频格式,视频预览图通过IOS、Android原生方法提供支持
  • 所用资源都提供File的绝对路径
  • 不支持原图预览
  • 不支持视频播放
  • 不支持IOS、Android动态权限、需要使用之前自行权限获取,建议使用permission_handler
  • ...

Demo动图(有那么点不清晰)

image

使用说明

Android 必须添加Kotlin依赖

Ios 必须是Swift创建的项目

dependencies in flutter


dependencies:
  image_picker_flutter: ^1.4.4
  

iOS 权限


<key>NSPhotoLibraryUsageDescription</key>
<string>使用图片</string>
<key>NSCameraUsageDescription</key>
<string>照相</string>
<key>NSMicrophoneUsageDescription</key>
<string>录音</string>

Android 权限


<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.CAMERA" />

Demo 应用

Android APP

IOS APP 因发布原因暂不提供、可以下载代码编译安装

API 介绍

  • ImagePicker
    • (单选)singlePicker
    • (多选)mulPicker
    • (拍照)takePicture
    • (视频录制)takeVideo

序言

- Flutter越做越强大!!!
- image_picker_flutter功能越来越完善!!!
- 开源加油!!!
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].