How to get BitMap, Bytearray or Base64 string from Camera












0















I need to get the bitmap, bytearray or base64 string of an image that I captured with the Android camera.



To start the capture I am using this.



Intent takePictureIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
// Ensure that there's a camera activity to handle the intent
if (takePictureIntent.resolveActivity(getPackageManager()) != null) {
// Create the File where the photo should go
File photoFile = null;
try {
photoFile = createImageFile();
} catch (IOException ex) {
// Error occurred while creating the File

}
// Continue only if the File was successfully created
if (photoFile != null) {
Uri photoURI = FileProvider.getUriForFile(getApplicationContext(),
"com.myapp.app.fileprovider",
photoFile);
takePictureIntent.putExtra(MediaStore.EXTRA_OUTPUT, photoURI);
startActivityForResult(takePictureIntent, REQUEST_TAKE_PHOTO);
}
}


I am able to save the photo to the gallery using this



private File createImageFile() throws IOException {
// Create an image file name
String timeStamp = new SimpleDateFormat("yyyyMMdd_HHmmss").format(new Date());
String imageFileName = "JPEG_" + timeStamp + "_";
File storageDir = getExternalFilesDir(Environment.DIRECTORY_PICTURES);
File image = File.createTempFile(
imageFileName, /* prefix */
".jpg", /* suffix */
storageDir /* directory */
);

// Save a file: path for use with ACTION_VIEW intents
mCurrentPhotoPath = image.getAbsolutePath();
return image;
}


And this is what I have tried so far but the bitmap variable seem to stay null.



@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);

/*if (requestCode == REQUEST_IMAGE_CAPTURE && resultCode == RESULT_OK) {
Bundle extras = data.getExtras();
Bitmap imageBitmap = (Bitmap) extras.get("data");
mImageView.setVisibility(View.VISIBLE);
mImageView.setImageBitmap(imageBitmap);
}*/
try {
switch (requestCode) {

case 1: {
if (resultCode == RESULT_OK) {

File file = new File(mCurrentPhotoPath);
Toast.makeText(this, mCurrentPhotoPath, Toast.LENGTH_SHORT).show();
Bitmap bitmap = MediaStore.Images.Media.getBitmap(getApplicationContext().getContentResolver(), Uri.fromFile(file));
if (bitmap != null) {

ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();
bitmap.compress(Bitmap.CompressFormat.JPEG, 100, byteArrayOutputStream);
byte byteArray = byteArrayOutputStream.toByteArray();

String encoded = Base64.encodeToString(byteArray, Base64.DEFAULT);
Base = encoded;

if (Base != "") {
mCheck.setChecked(true);
}
}
}
break;
}
}

} catch (Exception error) {
error.printStackTrace();
}


Any help will be greatly appreciated.










share|improve this question

























  • Is mCurrentPhotoPath correct in your Toast?

    – Alex Cohn
    Nov 16 '18 at 16:00











  • @AlexCohn it seems to be null and I have no idea why

    – L.Lieb
    Nov 17 '18 at 10:32













  • The typical cause is that the activity is killed by system while taking the picture. You need to use onSaveInstanceState() as explained here.

    – Alex Cohn
    Nov 17 '18 at 21:06
















0















I need to get the bitmap, bytearray or base64 string of an image that I captured with the Android camera.



To start the capture I am using this.



Intent takePictureIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
// Ensure that there's a camera activity to handle the intent
if (takePictureIntent.resolveActivity(getPackageManager()) != null) {
// Create the File where the photo should go
File photoFile = null;
try {
photoFile = createImageFile();
} catch (IOException ex) {
// Error occurred while creating the File

}
// Continue only if the File was successfully created
if (photoFile != null) {
Uri photoURI = FileProvider.getUriForFile(getApplicationContext(),
"com.myapp.app.fileprovider",
photoFile);
takePictureIntent.putExtra(MediaStore.EXTRA_OUTPUT, photoURI);
startActivityForResult(takePictureIntent, REQUEST_TAKE_PHOTO);
}
}


I am able to save the photo to the gallery using this



private File createImageFile() throws IOException {
// Create an image file name
String timeStamp = new SimpleDateFormat("yyyyMMdd_HHmmss").format(new Date());
String imageFileName = "JPEG_" + timeStamp + "_";
File storageDir = getExternalFilesDir(Environment.DIRECTORY_PICTURES);
File image = File.createTempFile(
imageFileName, /* prefix */
".jpg", /* suffix */
storageDir /* directory */
);

// Save a file: path for use with ACTION_VIEW intents
mCurrentPhotoPath = image.getAbsolutePath();
return image;
}


And this is what I have tried so far but the bitmap variable seem to stay null.



@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);

/*if (requestCode == REQUEST_IMAGE_CAPTURE && resultCode == RESULT_OK) {
Bundle extras = data.getExtras();
Bitmap imageBitmap = (Bitmap) extras.get("data");
mImageView.setVisibility(View.VISIBLE);
mImageView.setImageBitmap(imageBitmap);
}*/
try {
switch (requestCode) {

case 1: {
if (resultCode == RESULT_OK) {

File file = new File(mCurrentPhotoPath);
Toast.makeText(this, mCurrentPhotoPath, Toast.LENGTH_SHORT).show();
Bitmap bitmap = MediaStore.Images.Media.getBitmap(getApplicationContext().getContentResolver(), Uri.fromFile(file));
if (bitmap != null) {

ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();
bitmap.compress(Bitmap.CompressFormat.JPEG, 100, byteArrayOutputStream);
byte byteArray = byteArrayOutputStream.toByteArray();

String encoded = Base64.encodeToString(byteArray, Base64.DEFAULT);
Base = encoded;

if (Base != "") {
mCheck.setChecked(true);
}
}
}
break;
}
}

} catch (Exception error) {
error.printStackTrace();
}


Any help will be greatly appreciated.










share|improve this question

























  • Is mCurrentPhotoPath correct in your Toast?

    – Alex Cohn
    Nov 16 '18 at 16:00











  • @AlexCohn it seems to be null and I have no idea why

    – L.Lieb
    Nov 17 '18 at 10:32













  • The typical cause is that the activity is killed by system while taking the picture. You need to use onSaveInstanceState() as explained here.

    – Alex Cohn
    Nov 17 '18 at 21:06














0












0








0








I need to get the bitmap, bytearray or base64 string of an image that I captured with the Android camera.



To start the capture I am using this.



Intent takePictureIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
// Ensure that there's a camera activity to handle the intent
if (takePictureIntent.resolveActivity(getPackageManager()) != null) {
// Create the File where the photo should go
File photoFile = null;
try {
photoFile = createImageFile();
} catch (IOException ex) {
// Error occurred while creating the File

}
// Continue only if the File was successfully created
if (photoFile != null) {
Uri photoURI = FileProvider.getUriForFile(getApplicationContext(),
"com.myapp.app.fileprovider",
photoFile);
takePictureIntent.putExtra(MediaStore.EXTRA_OUTPUT, photoURI);
startActivityForResult(takePictureIntent, REQUEST_TAKE_PHOTO);
}
}


I am able to save the photo to the gallery using this



private File createImageFile() throws IOException {
// Create an image file name
String timeStamp = new SimpleDateFormat("yyyyMMdd_HHmmss").format(new Date());
String imageFileName = "JPEG_" + timeStamp + "_";
File storageDir = getExternalFilesDir(Environment.DIRECTORY_PICTURES);
File image = File.createTempFile(
imageFileName, /* prefix */
".jpg", /* suffix */
storageDir /* directory */
);

// Save a file: path for use with ACTION_VIEW intents
mCurrentPhotoPath = image.getAbsolutePath();
return image;
}


And this is what I have tried so far but the bitmap variable seem to stay null.



@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);

/*if (requestCode == REQUEST_IMAGE_CAPTURE && resultCode == RESULT_OK) {
Bundle extras = data.getExtras();
Bitmap imageBitmap = (Bitmap) extras.get("data");
mImageView.setVisibility(View.VISIBLE);
mImageView.setImageBitmap(imageBitmap);
}*/
try {
switch (requestCode) {

case 1: {
if (resultCode == RESULT_OK) {

File file = new File(mCurrentPhotoPath);
Toast.makeText(this, mCurrentPhotoPath, Toast.LENGTH_SHORT).show();
Bitmap bitmap = MediaStore.Images.Media.getBitmap(getApplicationContext().getContentResolver(), Uri.fromFile(file));
if (bitmap != null) {

ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();
bitmap.compress(Bitmap.CompressFormat.JPEG, 100, byteArrayOutputStream);
byte byteArray = byteArrayOutputStream.toByteArray();

String encoded = Base64.encodeToString(byteArray, Base64.DEFAULT);
Base = encoded;

if (Base != "") {
mCheck.setChecked(true);
}
}
}
break;
}
}

} catch (Exception error) {
error.printStackTrace();
}


Any help will be greatly appreciated.










share|improve this question
















I need to get the bitmap, bytearray or base64 string of an image that I captured with the Android camera.



To start the capture I am using this.



Intent takePictureIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
// Ensure that there's a camera activity to handle the intent
if (takePictureIntent.resolveActivity(getPackageManager()) != null) {
// Create the File where the photo should go
File photoFile = null;
try {
photoFile = createImageFile();
} catch (IOException ex) {
// Error occurred while creating the File

}
// Continue only if the File was successfully created
if (photoFile != null) {
Uri photoURI = FileProvider.getUriForFile(getApplicationContext(),
"com.myapp.app.fileprovider",
photoFile);
takePictureIntent.putExtra(MediaStore.EXTRA_OUTPUT, photoURI);
startActivityForResult(takePictureIntent, REQUEST_TAKE_PHOTO);
}
}


I am able to save the photo to the gallery using this



private File createImageFile() throws IOException {
// Create an image file name
String timeStamp = new SimpleDateFormat("yyyyMMdd_HHmmss").format(new Date());
String imageFileName = "JPEG_" + timeStamp + "_";
File storageDir = getExternalFilesDir(Environment.DIRECTORY_PICTURES);
File image = File.createTempFile(
imageFileName, /* prefix */
".jpg", /* suffix */
storageDir /* directory */
);

// Save a file: path for use with ACTION_VIEW intents
mCurrentPhotoPath = image.getAbsolutePath();
return image;
}


And this is what I have tried so far but the bitmap variable seem to stay null.



@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);

/*if (requestCode == REQUEST_IMAGE_CAPTURE && resultCode == RESULT_OK) {
Bundle extras = data.getExtras();
Bitmap imageBitmap = (Bitmap) extras.get("data");
mImageView.setVisibility(View.VISIBLE);
mImageView.setImageBitmap(imageBitmap);
}*/
try {
switch (requestCode) {

case 1: {
if (resultCode == RESULT_OK) {

File file = new File(mCurrentPhotoPath);
Toast.makeText(this, mCurrentPhotoPath, Toast.LENGTH_SHORT).show();
Bitmap bitmap = MediaStore.Images.Media.getBitmap(getApplicationContext().getContentResolver(), Uri.fromFile(file));
if (bitmap != null) {

ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();
bitmap.compress(Bitmap.CompressFormat.JPEG, 100, byteArrayOutputStream);
byte byteArray = byteArrayOutputStream.toByteArray();

String encoded = Base64.encodeToString(byteArray, Base64.DEFAULT);
Base = encoded;

if (Base != "") {
mCheck.setChecked(true);
}
}
}
break;
}
}

} catch (Exception error) {
error.printStackTrace();
}


Any help will be greatly appreciated.







bitmap base64 android-camera-intent






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 16 '18 at 15:56









Alex Cohn

42.3k555195




42.3k555195










asked Nov 16 '18 at 11:50









L.LiebL.Lieb

12




12













  • Is mCurrentPhotoPath correct in your Toast?

    – Alex Cohn
    Nov 16 '18 at 16:00











  • @AlexCohn it seems to be null and I have no idea why

    – L.Lieb
    Nov 17 '18 at 10:32













  • The typical cause is that the activity is killed by system while taking the picture. You need to use onSaveInstanceState() as explained here.

    – Alex Cohn
    Nov 17 '18 at 21:06



















  • Is mCurrentPhotoPath correct in your Toast?

    – Alex Cohn
    Nov 16 '18 at 16:00











  • @AlexCohn it seems to be null and I have no idea why

    – L.Lieb
    Nov 17 '18 at 10:32













  • The typical cause is that the activity is killed by system while taking the picture. You need to use onSaveInstanceState() as explained here.

    – Alex Cohn
    Nov 17 '18 at 21:06

















Is mCurrentPhotoPath correct in your Toast?

– Alex Cohn
Nov 16 '18 at 16:00





Is mCurrentPhotoPath correct in your Toast?

– Alex Cohn
Nov 16 '18 at 16:00













@AlexCohn it seems to be null and I have no idea why

– L.Lieb
Nov 17 '18 at 10:32







@AlexCohn it seems to be null and I have no idea why

– L.Lieb
Nov 17 '18 at 10:32















The typical cause is that the activity is killed by system while taking the picture. You need to use onSaveInstanceState() as explained here.

– Alex Cohn
Nov 17 '18 at 21:06





The typical cause is that the activity is killed by system while taking the picture. You need to use onSaveInstanceState() as explained here.

– Alex Cohn
Nov 17 '18 at 21:06












0






active

oldest

votes












Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53337316%2fhow-to-get-bitmap-bytearray-or-base64-string-from-camera%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes
















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53337316%2fhow-to-get-bitmap-bytearray-or-base64-string-from-camera%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Xamarin.iOS Cant Deploy on Iphone

Glorious Revolution

Dulmage-Mendelsohn matrix decomposition in Python