Rox.Xamarin.Camera
1.1.0
Acquire images with the device camera in Xamarin Forms with the CameraProvider component. Supports Android, iOS, and UWP.
The CameraProvider component uses native Camera components on each platform.
****************
In your iOS project "AppDelegate" code file, you must call "Rox.CameraIos.Init()" before "Xamarin.Forms.Forms.Init()". It should look something like:
----------------
Rox.CameraIos.Init();
global::Xamarin.Forms.Forms.Init();
LoadApplication(new MyCameraApplication());
****************
Sample Application is available at:
----------------
https://github.com/Rod-at-Rox/RoxXamarinCamera
****************
The CameraProvider component has the following methods:
- Task<ImageSource> AcquirePicture(); (Take a picture with the device camera)
****************
Requires NuGet 2.8.1 or higher.
Install-Package Rox.Xamarin.Camera -Version 1.1.0
dotnet add package Rox.Xamarin.Camera --version 1.1.0
<PackageReference Include="Rox.Xamarin.Camera" Version="1.1.0" />
paket add Rox.Xamarin.Camera --version 1.1.0
#r "nuget: Rox.Xamarin.Camera, 1.1.0"
Release Notes
[1.1.0]
- Fixed Android namespace issue
- Updated sample application
- Changed packages.config to project.json
- Target Profile259
- Built against Xamarin.Forms 2.3.2.127
- Dependency on Xamarin.Forms 1.0.0.0
[1.0.0]
- Added sample application to GIT
Dependencies
-
- Xamarin.Forms (>= 1.0.0)
Used By
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.