In my application i want to create an exact replica of iOS 7.0 camera inside my app .Like android apps is it possible to call the native camera app in IOS 7.0/8.0.
Second question:
Using UIImagePickerController is it possible to apply filters to photo ,slow mo ,pano?
Thanks!
You access Default camera app using UIImagePickerController
Refer this link ios-programming-camera-iphone
Related
I am developing an Ionic app for Android and iOS.
We are trying to prevent users from taking screenshots of the app, whether the method is blurring the screen or otherwise. We also want to prevent video screen recording.
We are building using Ionic, so the method must work with Ionic.
We have been able to get this to work for Android, but not iOS.
Anyone know of any Ionic-friendly methods to prevent screen shots while inside an app?
I am using Xam.Plugin.Media to access camera and photo gallery in my Xamarin forms app.
Its working in IPhone and in Android devices but not working in IPad with latest ios version 10.3.
The Screen will be freezed when I am calling the function to open Camera.
I tried other plugins also but the same issue.
Front Camera is working but Rear camera is not working.
I found the fix for this issue in below links.
https://github.com/jamesmontemagno/MediaPlugin/issues/173
Application freezes when trying to present rear camera on iPad
Actually I was using this code
UISlider.Appearance.MinimumTrackTintColor = UIColor.Red.ColorWithAlpha(100);
to configure some appearance of UISlider in ios. It was causing the issue.
By removing these lines, camera is working fine in both iphone and Ipad.
I'm developing iOS 3rd party camera app.
I really want to make "previewing function" like default camera app below
I've tried UIImagePickerController but, it is not what I want
I am automating a test where we need to launch camera app , and capture some images/videos. Those captured images/videos will be saved in media library.
Now Since
1. On real iOS device we can not automate camera app using appium, I thought to write and iOS app which will launch Camera , till this step it is fine, I could launch camera but the capture button not be clicked using appium.
Do we have any other way to launch a camera on iOS device using appium and capture some images ?
Part of Apples security model is the Sandbox. You can only play within your own sandbox. Since the camera app is it's own entity you will not have any control over it once it is launched and can not provide testing code to control it.
You will need to either write your own camera control module which you can then control to take pictures using your test tool or you can pre-populate the device with your required images.
Is it possible to search for or get any video file on iOS devices using phonegap?
Currently i use camera.getPicture and point it to the PictureSourceType.SAVEDPHOTOALBUM/PHOTOLIBRARY but that is only showing videos taken with the native iOS camera.