title | preview |
---|---|
ImageReader 图片选择器 |
用于相册照片读取或拉起拍照
import { ImageReader } from 'mand-mobile'
import imageProcessor from 'mand-mobile/lib/image-reader/image-processor' // 图片处理插件,用法参考#imageProcessor
Vue.component(ImageReader.name, ImageReader)
属性 | 说明 | 类型 | 默认值 | 备注 |
---|---|---|---|---|
name | 标识 | String | - | 可用于区分多个选择器 |
size | 图片尺寸限制 | String/Number | - | 单位kb |
mime | 支持图片类型 | Array | * |
如['jpeg','png'] |
is-camera-only | 是否只支持拍照 | Boolean | false |
- |
is-multiple | 是否支持选择多张 | Boolean | false |
存在兼容问题 |
amount | 选择多张 | Number | - | 只在is-multiple 为true 时有效 |
图片选择完成事件,还未开始读取
属性 | 说明 | 类型 | 备注 |
---|---|---|---|
name | 选择器标识 | String | - |
files | 图片对象集合 | Array | - |
图片选择读取完成事件
属性 | 说明 | 类型 | 备注 |
---|---|---|---|
name | 选择器标识 | String | - |
dataUrl | 图片Base64 | String | - |
blob | 图片Blob对象,可用于formData |
Blob | - |
file | 图片对象 | File | - |
图片选择读取失败事件
属性 | 说明 | 类型 | 备注 |
---|---|---|---|
name | 选择器标识 | String | - |
code | 错误标识,见附录 | String | - |
msg | 错误信息,见附录 | String | - |
用于图片轴向修正,图片质量压缩,宽高控制
import imageProcessor from 'mand-mobile/lib/image-reader/image-processor'
/**
* options 图片处理配置
* fn(dataUrl, blob) 处理完成回调
* @return Promise({dataUrl, blob})
*/
imageProcessor(options[, fn])
属性 | 说明 | 类型 | 备注 |
---|---|---|---|
dataUrl | 图片Base64 | String | - |
width | 图片宽度 | Number | 单位px , 宽度超出时等比缩放 |
height | 图片高度 | Number | 单位px , 高度超出时等比缩放 |
quality | 图片质量 | Number | 取值范围0-1 |
图片读取失败错误码和错误信息
'100': 'browser does not support'
'101': 'picture size is beyond the preset'
'102': 'picture read failure'
'103': 'the number of pictures exceeds the limit'