I'm using this AsyncTask for saving my image resource to SD Card:
public class SaveImageAsync extends AsyncTask<String, String, String> {
private Context mContext;
int imageResourceID;
private ProgressDialog mProgressDialog;
public SaveImageAsync(Context context, int image)
{
mContext = context;
imageResourceID = image;
}
@Override
protected void onPreExecute() {
super.onPreExecute();
mProgressDialog = new ProgressDialog(mContext);
mProgressDialog.setMessage("Saving Image to SD Card");
mProgressDialog.setMax(100);
mProgressDialog.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL);
mProgressDialog.setIndeterminate(true);
mProgressDialog.setCancelable(false);
mProgressDialog.show();
}
@SuppressLint("NewApi")
@Override
protected String doInBackground(String... filePath) {
try {
Bitmap bitmap = BitmapFactory.decodeResource(mContext.getResources(), imageResourceID);
ByteArrayOutputStream bos = new ByteArrayOutputStream();
bitmap.compress(CompressFormat.JPEG, 100, bos);
byte[] bitmapdata = bos.toByteArray();
ByteArrayInputStream bis = new ByteArrayInputStream(bitmapdata);
int lenghtOfFile = bitmap.getByteCount();
Log.d("LOG", "File Lenght = " + lenghtOfFile);
byte[] buffer = new byte[64];
int len1 = 0;
long total = 0;
while ((len1 = bis.read(buffer)) > 0) {
total += len1;
publishProgress("" + (int) ((total * 100) / lenghtOfFile));
bos.write(buffer, 0, len1);
}
bos.flush();
bos.close();
bitmap.recycle();
bis.close();
return getTempUri().getPath();
} catch (Exception e) {
return null;
}
}
protected void onProgressUpdate(String... progress) {
mProgressDialog.setIndeterminate(false);
mProgressDialog.setProgress(Integer.parseInt(progress[0]));
}
@Override
protected void onPostExecute(String filename) {
// dismiss the dialog after the file was saved
try {
mProgressDialog.dismiss();
mProgressDialog = null;
} catch (Exception e) {
e.printStackTrace();
}
}
private Uri getTempUri() {
return Uri.fromFile(getTempFile());
}
private File getTempFile() {
if (Environment.getExternalStorageState().equals(Environment.MEDIA_MOUNTED)) {
File directory = new File(mContext.getExternalCacheDir().getPath());
directory.mkdirs();
File file = new File(directory , "temp.jpg");
try {
file.createNewFile();
} catch (IOException e) {}
return file;
} else {
return null;
}
}
}
And I call it from my Activity with this:
new SaveImageAsync(this, R.drawable.my_image_resource).execute();
It works fine, the problem is that the bitmap size returned by bitmap.getByteCount();
is completely different from the final size of the saved file. The result when the process is completed that the indicated progress is only 20% more or less.
Is there any way to know the final size of the file before save it? Thanks.
Thanks to Baschi answer,
bitmapdata.length;
is just what I need, this is myAsyncTask
for save abitmap
to the SD Card withDeterminated ProgressBar
, I hope someone will find it useful:Use this line in your
Activity
to save an image: