gpt4 book ai didi

android - 图像捕获,保存文件...Android/Parse

转载 作者:太空狗 更新时间:2023-10-29 13:19:58 25 4
gpt4 key购买 nike

我正在尝试将从手机捕获的图像文件保存到 Android 应用程序中的 Parse。我正在使用最终文件 mediaFile。我想我的问题是,我知道我需要将文件转换为字节数组......我已经尝试了多种方法来做到这一点。我可以在预览中看到图像...但我似乎无法将其保存到 Parse。

感谢您的帮助。

 public Uri getOutputMediaFileUri(int type) {
return Uri.fromFile(getOutputMediaFile(type));

}


/**
* returning image / video
*/
private File getOutputMediaFile(int type) {

// External sdcard location
String appName = CameraActivity.this.getString(R.string.app_name);
File mediaStorageDir = new File(
Environment
.getExternalStoragePublicDirectory(Environment.DIRECTORY_PICTURES),
appName);

// Create the storage directory if it does not exist
if (!mediaStorageDir.exists()) {
if (!mediaStorageDir.mkdirs()) {
Log.d(appName, "Oops! Failed create "
+ appName + " directory");
return null;
}
}

// Create a media file name
String timeStamp = new SimpleDateFormat("yyyyMMdd_HHmmss",
Locale.getDefault()).format(new Date());
final File mediaFile;
if (type == MEDIA_TYPE_IMAGE) {
mediaFile = new File(mediaStorageDir.getPath() + File.separator
+ "IMG_" + timeStamp + ".jpg");
} else {
return null;
}




final ParseFile photoFile;

FileInputStream fileInputStream=null;


byte[] bFile = new byte[(int) mediaFile.length()];

try {
//convert file into array of bytes
byte[] data2;

FileInputStream fis = new FileInputStream(mediaFile);
FileChannel fc = fis.getChannel();
int sz = (int)fc.size();
MappedByteBuffer bb = fc.map(FileChannel.MapMode.READ_ONLY, 0, sz);
data2 = new byte[bb.remaining()];
bb.get(data2);
// Save the image to Parse
photoFile = new ParseFile("profile_photo.jpg", data2);
photoFile.saveInBackground();
mCurrentUser.getCurrentUser();
mCurrentUser.put("ProfilePhoto", photoFile);
mCurrentUser.saveInBackground();

System.out.println("Done");
}catch(Exception e) {
e.printStackTrace();

}

return mediaFile;
}


}

最佳答案

我已经尝试过这个,它对我有用......!

currentUser = ParseUser.getCurrentUser();
ByteArrayOutputStream stream = new ByteArrayOutputStream();
// Compress image to lower quality scale 1 - 100
//here bitmap is your selected photo's bitmap
bitmapProfilePic.compress(Bitmap.CompressFormat.PNG, 100, stream);
byte[] image = stream.toByteArray();
final ParseFile file = new ParseFile("Profile.png", image);
file.saveInBackground(new SaveCallback() {
@Override
public void done(ParseException e) {
if (e == null) {

currentUser.put("ProfilePhoto", file);
currentUser.saveInBackground(new SaveCallback() {
@Override
public void done(ParseException e) {
if (e == null) {
Toast.makeText(context, "Updated..!!", Toast.LENGTH_LONG).show();
}
}
});
Toast.makeText(context, "Picture Updated..!!", Toast.LENGTH_LONG).show();
} else {
Toast.makeText(context, "Error to " + e.getMessage(), Toast.LENGTH_LONG).show();
}
}
});

在你的情况下,你已经在 data2 中有字节数据,所以......

final ParseFile file = new ParseFile("YourPhotoName.jpg", data2);
file.saveInBackground(new SaveCallback() {
@Override
public void done(ParseException e) {
if (e == null) {

currentUser.put("ProfilePhoto", file);
currentUser.saveInBackground(new SaveCallback() {
@Override
public void done(ParseException e) {
if (e == null) {
Toast.makeText(context, "Updated..!!", Toast.LENGTH_LONG).show();
}
}
});
Toast.makeText(context, "Picture Updated..!!", Toast.LENGTH_LONG).show();
} else {
Toast.makeText(context, "Error to " + e.getMessage(), Toast.LENGTH_LONG).show();
}
}
});

关于android - 图像捕获,保存文件...Android/Parse,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30181151/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com