immi5556 / Android-Camera-Thumbnail

Android Camera Library with Thumbnail - reusable library

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Synopsis

This is a reusable simple android library which opens camera screen & captures the images as thumnail in the same screen and then save will send list of images as Bitmap array to the caller.

Build Status License

This how it works

Code Example

	Intent i = new Intent(ma, CameraIntent.class);
    startActivityForResult (i, 110);

	protected void onActivityResult(int requestCode, int resultCode, Intent data) {
		if (resultCode == Activity.RESULT_OK && requestCode == 110) {
			for (Bitmap bm: GlobalConfig.imgs) {
				// Get all images
			}
		}
	}

Installation

gradle: compile 'co.immanuel:camerathumb:0.8'

API Reference

Contributors

raj@immanuel.co

License

MIT License

About

Android Camera Library with Thumbnail - reusable library


Languages

Language:Java 100.0%