Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: chooseImage 支持 sizeType 参数 #9826

Merged
merged 3 commits into from
Jul 20, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion packages/taro-rn/src/lib/chooseImage/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,12 @@ function openCamera(options: Taro.chooseImage.Option): Promise<Taro.chooseImage.
}

function openPicker(options: Taro.chooseImage.Option): Promise<Taro.chooseImage.SuccessCallbackResult> {
const { count: imageCount, success, complete, fail } = options
const { count: imageCount, sizeType = [],success, complete, fail } = options
return new Promise((resolve, reject) => {
// NOTE:react-native-syan-image-picker 暂不支持 Android 端压缩
SYImagePicker.showImagePicker({
imageCount,
quality: sizeType[0] === 'compressed' ? 70 : 90,
}, (err, photos: any) => {
if (err) {
const res = {
Expand Down