Why does saving a bitmap take so long?

后端 未结 1 1767
有刺的猬
有刺的猬 2020-12-17 00:42

So I have an app on Google Glass that takes a picture, then converts it to grayscale and overwrites the original image in memory:

private void rGBProcessing          


        
相关标签:
1条回答
  • 2020-12-17 00:56

    I am not using the Google Glass, but faced this same problem. So I am going to document my findings here.

    My bitmap was taking a long time to save. It took me nearly 4 sec to save a bitmap of size 1200x1200 and the final saved file size was 2MB. But I didn't need that level of clarity and file size. When I mean "save", it means the actual saving to the disk alone and not the time taken by the Android OS to detect it as a media item.


    ACTUAL SAVE: Try out the following if you find the saving of bitmap to be slow:

    1. Try to use JPEG format and use PNG only when it is absolutely necessary. Use bitmap.compress(Bitmap.CompressFormat.JPEG, 100, out);
    2. If you are creating the bitmap and you don't care about the transparency, then use Bitmap.Config.RGB_565 instead of Bitmap.Config.ARGB_8888.

      Use Bitmap bitmap = Bitmap.createBitmap(width, height, Bitmap.Config.RGB_565);


    DETECTION IN FILE MANAGER:

    Once you have saved the bitmap as a File in the Storage, the Android OS won't immediately show this file in the File Manager or in the explorer when you connect it to your PC. In order to do this detection fast, you need to use MediaScannerConnection.

    MediaScannerConnection.scanFile(getActivity(), new String[]{file.toString()}, null, null);
    
    0 讨论(0)
提交回复
热议问题