Skip to content
Closed
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,
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

这里70与90的依据是?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

0.9 是原始图大小,1 的话得到的图会比原始图大,0.7是微聊客开发中的经验值,不影响失真

}, (err, photos: any) => {
if (err) {
const res = {
Expand Down