Skip to content

Android Camera Library with Thumbnail - reusable library

Notifications You must be signed in to change notification settings

immi5556/Android-Camera-Thumbnail

Repository files navigation

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

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages