iPad Gallery Reveal Feature - objective-c

I've been searching for a library or open source project that does something like the iPad gallery reveal feature, spread to reveal photos in an album, pinch to close. Does anyone know of such a library?

The reason you are having trouble finding this is that applications have been rejected for implementing this feature. Read this for more details.

Related

What's the name of camera tiles view in agora.io?

I'm just playing around with agora.io, WebRTC and I want to implement a "camera tile view". I hope you understand what I mean, so all the (small) cameras of the users should be displayed in a row/table one next to each other or in a list, if too many users. The active speaking user gets a border around his camera view or sth like that.
Can anybody tell me the name of this kind of view or point me to a location, where I can check some samples about this?
Best regards, Alex
The Agora SDK's provide all the API's for building your own Ui, so there is no method within the SDK for generating a tile view, you would have to do that yourself.
That being said, the Agora developer community has some open source UI Kits that serve as a good starter template for your UI that you can adjust. The Agora Web UIKit supports tile view as the default.
Vanilla JS: https://www.agora.io/en/blog/adding-video-chat-or-live-streaming-to-your-website-in-5-lines-of-code-using-the-agora-web-uikit/
React: https://agoraio-community.github.io/Web-React-UIKit/

Embedded camera in Xamarin Forms

I have a client that adamantly insists on a solution with embedded camera in terms of having a ContentPage with an camera stream and custom buttons and icons, similar to https://github.com/pierceboggan/Moments, or at very least as I understand it seeing as it is a Snapchat clone. And my client wants similar swipe capabilities as to how navigation works in Snapchat.
However, as far as I can tell most of what is utilized in that solution has been deprecated.
I have suggested using the Media Plugin https://github.com/jamesmontemagno/MediaPlugin but they're not satisfied with the camera being pushed on the stack.
I've looked into implementing it natively and using dependency injections but it appears to be an overwhelming amount of work just to implement the most basic functions, particularly for Android's Camera2.
I'm hoping someone can provide me with good news of an easier alternative or an alteration to either Moments or Media Plugin or anything similar that will facilitate the requirements or if my only option is time consuming and complex?
From the code of Moment, you can do what you want to achieve. I did this for iOS.
You will have to create a custom renderer to display the camera page. You will be able to add buttons on top of it.
You could try this example which use custom renderer to add a take photo button and switch camera button on the camera view. Which is able to use on iOS and Android platform.
Main Page:
Camera View with custom button page:

Change brightness of video and save in photo library in Objective-C, XCode

I am developing and app for iOS platform. The app is about video editing, I want to give users option to change the brightness of the video before saving. I am using GPUImage library for video editing, is there any way I can change the brightness of the video and save it in the photo library. Thanks
P.S. I tried finding the similar issue, sorry if the answer to this question already exist, i could not find that.

Camera Lense overlay - WindowsRT

I'm creating an app where I would like the user to be able to take their own photos. However, I'd like to apply an overlay of where the face should be in the picture (in order for the app to work best).
So when the camera is launched from the app, I'd like there to be a faint outline that is visible on the screen. This way the user can line up the face inside of that outline.
Where would I even look to see how that is done?
Start with MSDN or with the Nokia Developer's library
Nokia just released an Imaging SDK for Windows Phone 8 which might be useful.

Photo Album inside an app

Do any of you know if it's possible to make a Photo Album inside an app? The app that I'm building has a lot of features, one of them is to take a picture, write on top of it, save it, and then mail it if you want. I know the photos go to the Camera Roll Album, but is there a way for them not to go there? If not, then how can I bring them to my app in some sort of thumbnail scroll gallery or something so that I can edit them and resave them?
Important Note: the many features also consume a lot of memory, so I'll have to use the least resources possible.
Check out UIImagePickerController.
You can also save your photos to the Documents directory as well, it doesn't have to be the Camera Roll or Photo Library.
Source code see here