1. 程式人生 > >React-Native-image-picker-調取攝像頭第三方元件:

React-Native-image-picker-調取攝像頭第三方元件:

近期做的軟體中圖片處理是重點,那麼自然也就用到了相機照相或者相簿選取照片的功能。

react-native中有image-picker這個第三方元件,但是0.18.10這個版本還不是太支援iPad。

這個元件同時支援photo和video,也就是照片和視訊都可以用這個元件實現。

安裝

 npm install --save react-native-image-picker

安裝過之後要執行rnpm link命令

用法

 import ImagePickerManager from 'NativeModules';
 
 當你想展示相機還是相簿這個選擇器時:(變數options還有其它的設定,一些使用它的預設值就可以滿足我們的要求,以下是我使用到的)
var options = {
  title: 'Select Avatar', // 選擇器的標題,可以設定為空來不顯示標題
  cancelButtonTitle: 'Cancel',
  takePhotoButtonTitle: 'Take Photo...', // 調取攝像頭的按鈕,可以設定為空使使用者不可選擇拍照
  chooseFromLibraryButtonTitle: 'Choose from Library...', // 調取相簿的按鈕,可以設定為空使使用者不可選擇相簿照片
  customButtons: {
    'Choose Photo from Facebook': 'fb', // [按鈕文字] : [當選擇這個按鈕時返回的字串]
  },
  mediaType: 'photo', // 'photo' or 'video'
  videoQuality: 'high', // 'low', 'medium', or 'high'
  durationLimit: 10, // video recording max time in seconds
  maxWidth: 100, // photos only預設為手機螢幕的寬,高與寬一樣,為正方形照片
  maxHeight: 100, // photos only
  allowsEditing: false, // 當用戶選擇過照片之後是否允許再次編輯圖片
};
 
ImagePickerManager.showImagePicker(options, (response) => {
  console.log('Response = ', response);

  if (response.didCancel) {
    console.log('User cancelled image picker');
  }
  else if (response.error) {
    console.log('ImagePickerManager Error: ', response.error);
  }
  else if (response.customButton) {
    // 這是當用戶選擇customButtons自定義的按鈕時,才執行
    console.log('User tapped custom button: ', response.customButton);
  }
  else {
    // You can display the image using either data:

    if (Platform.OS === 'android') {
        source = {uri: response.uri, isStatic: true};
    } else {
        source = {
            uri: response.uri.replace('file://', ''),
            isStatic: true
        };
    }

    this.setState({
      avatarSource: source
    });
  }
});


顯示圖片的方法: 
<Image source={this.state.avatarSource} style={styles.uploadAvatar} />

當然我們也有不想讓使用者選擇的時候,而是直接就呼叫相機或者相簿,這個元件中還有其它的函式:

// Launch Camera:
  ImagePickerManager.ImagePickerManager.launchCamera(options, (response)  => {
    // Same code as in above section!
  });

  // Open Image Library:
  ImagePickerManager.ImagePickerManager.launchImageLibrary(options, (response)  => {
    // Same code as in above section!
  });


這個元件只支援從相簿中選取一張圖片,如果滿足不了需求,可以先學習瞭解一下官方版react-native的demo:裡邊有CameraRoll可以支援從相簿中獲取多張圖片。