반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- localserver
- Android
- avds
- unittest
- PYTHON
- 개발
- qunit
- IOS
- 네트워크
- ReactNative
- linux
- 센토스
- TensorFlow
- 리눅스
- Chrome
- picker
- MachineLearning
- webpack
- centos
- VirtualBox
- androidstudio
- react
- node
- xcode
- build
- jest
- MAC
- 맥
- vsCode
Archives
- Today
- Total
로메오의 블로그
[IONIC] IONIC에서 Cordova Plugin 사용하기 본문
반응형
Cordova 플러그인 설치하기
$ cordova plugin add https://github.com/Telerik-Verified-Plugins/ImagePicker.git --variable PHOTO_LIBRARY_USAGE_DESCRIPTION="your usage message"
Image Picker 사용하기
import { Component, OnInit } from '@angular/core';
import { Platform } from '@ionic/angular';
declare var window;
@Component({
selector: 'app-folder',
templateUrl: './folder.page.html',
styleUrls: ['./folder.page.scss'],
})
export class FolderPage implements OnInit {
constructor(
private platform: Platform
) {
platform.ready().then(() => {
window.imagePicker.getPictures(results => {
for (var i = 0; i < results.length; i++) {
console.log('Image URI: ' + results[i]);
}
}, error => {
console.log('Error: ' + error);
});
});
}
}
반응형
'Frontend > angular' 카테고리의 다른 글
[IONIC] 파일 업로드 - to Spring (0) | 2020.05.29 |
---|---|
[IONIC] navigation 파라미터 넘기기 (0) | 2020.05.26 |
[IONIC] Document Scanner (0) | 2020.05.14 |
[IONIC] Firebase Firestore 연결 (0) | 2020.02.13 |
[IONIC] Firebase Login (1) | 2020.02.12 |
Comments