Access Camera & Gallery in Ionic Apps with example | cordova plugin camera | codesundar

preview_player
Показать описание
Learn how to access device camera and gallery (using cordova-plugin-camera) in your ionic 5 apps with step by step tutorial.

What you'll learn?
- Configure cordova-plugin-camera
- Accessing Camera
- Accessing device gallery

If you're facing any issue or want me to do new topics? feel free to comment below.

Useful Links:

Follow:
Рекомендации по теме
Комментарии
Автор

I like you way of explanation, Thank you

rakhipramanik
Автор

I watched your video on youtube from cordova camera for android studio. I can pay you to develop a feature in android studio so that every app I run and when the app accesses the camera to take a picture or record video, I can have the option to select from the gallery instead of taking the picture or record the video?

neurismarfranciscopereirad
Автор

i am getting an error Uncaught Error: Type Camera does not have 'ɵmod' property.

sukdipkar
Автор

Super explanation sir than you so much such valuable information shared

anuanu-ccnq
Автор

Hi bhai,
Thankyou for this tutorial.
Bhai I have a question for you, how can we upload the captured images to phone gallery. Please explain and make a video for it.

Thankyou

the_ashishthought
Автор

Nice video and what about multiple selection?

matadorevo
Автор

Thanks for this video I am able to set profile image but when logout our from profile then image disappear so please help how can save image in firebase or other medium so that we can login again I can see same image again.

ArjunSingh-rhlo
Автор

I want videos from the gallery to be shown along with photos. Could you let me know if this option is available in the plugin.

shrimathir
Автор

Bro, how to disable the take picture option when open it in browser ?

sandeepverma
Автор

Brother i want you to please upload a file using fileupload control and save into a folder using webapi.
as i have using ionic and angular i have achived image saving using fileupload and sending form data to api and image is also save into folder .It works in browser but when i create apk and try in mobile gallery does not open

sagarsharma
Автор

Hi mate, thanks so much for sharing your knowledge .
i dealing with this when i finished you video.
common.js:284 Native: tried calling Camera.getPicture, but Cordova is not available. Make sure to include cordova.js or run in a device/simulator
thanks a lot

luberalexanderechavarriabe
Автор

Thanks a lot for tutorial.
How to upload to any server like java, .net or python

Could you please make a video or any link. To upload the same into server

Thanks a lot in advance

upendrasahu
Автор

I have a problem. I can get photos from the photo library but cannot get photos from the camera. Here is the code for the camera: getPhoto(){
this.camera.getPicture({
sourceType: this.camera.PictureSourceType.CAMERA,
destinationType:
}).then((res)=>{
this.imgURL = res;
}).catch(e=>{
console.log(e);
})
}

whiterosewm