Skip to content

Instantly share code, notes, and snippets.

@wertgit
Created March 22, 2016 10:53
Show Gist options
  • Save wertgit/eda75946d6ba6fdec228 to your computer and use it in GitHub Desktop.
Save wertgit/eda75946d6ba6fdec228 to your computer and use it in GitHub Desktop.
EasyCamera
EasyCamera camera = DefaultEasyCamera.open();
CameraActions actions = camera.startPreview(surface);
PictureCallback callback = new PictureCallback() {
public void onPictureTaken(byte[] data, CameraActions actions) {
// store picture
}
};
actions.takePicture(Callbacks.create().withJpegCallback(callback));
<dependency>
<groupId>net.bozho.easycamera</groupId>
<artifactId>easycamera</artifactId>
<version>0.0.1</version>
<type>aar</type>
</dependency>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment