0

我是android的初学者。在从 SD 卡中一一解码图像(大小为 1600x1200)时,出现以下错误。解码位图后,我必须为 imageview 应用动画才能像幻灯片一样全屏播放图像。我正在使用以下计算在对位图进行边界解码后获取样本大小。

while (true) {
    if (width_tmp / 2 < REQUIRED_WIDTH || height_tmp / 2 < REQUIRED_HEIGHT )
        break;
    width_tmp /= 2;
    height_tmp /= 2;
    scale *= 2;
}

谁能帮我解决这个问题。

Error:
11-09 13:39:15.100: E/DhcpStateMachine(424): DHCP failed on wlan0: Timed out waiting for DHCP to finish
11-09 13:39:15.300: E/WifiStateMachine(424): IP configuration failed
11-09 13:39:32.840: E/dalvikvm-heap(2511): Out of memory on a 20155408-byte allocation.
11-09 13:39:32.870: E/AndroidRuntime(2511): FATAL EXCEPTION: AsyncTask #1
11-09 13:39:32.870: E/AndroidRuntime(2511): java.lang.RuntimeException: An error occured while executing doInBackground()
11-09 13:39:32.870: E/AndroidRuntime(2511):     at android.os.AsyncTask$3.done(AsyncTask.java:299)
11-09 13:39:32.870: E/AndroidRuntime(2511):     at java.util.concurrent.FutureTask$Sync.innerSetException(FutureTask.java:273)
11-09 13:39:32.870: E/AndroidRuntime(2511):     at java.util.concurrent.FutureTask.setException(FutureTask.java:124)
11-09 13:39:32.870: E/AndroidRuntime(2511):     at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:307)
11-09 13:39:32.870: E/AndroidRuntime(2511):     at java.util.concurrent.FutureTask.run(FutureTask.java:137)
11-09 13:39:32.870: E/AndroidRuntime(2511):     at android.os.AsyncTask$SerialExecutor$1.run(AsyncTask.java:230)
11-09 13:39:32.870: E/AndroidRuntime(2511):     at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1076)
11-09 13:39:32.870: E/AndroidRuntime(2511):     at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:569)
11-09 13:39:32.870: E/AndroidRuntime(2511):     at java.lang.Thread.run(Thread.java:856)
11-09 13:39:32.870: E/AndroidRuntime(2511): Caused by: java.lang.OutOfMemoryError
11-09 13:39:32.870: E/AndroidRuntime(2511):     at android.graphics.BitmapFactory.nativeDecodeStream(Native Method)
11-09 13:39:32.870: E/AndroidRuntime(2511):     at android.graphics.BitmapFactory.decodeStream(BitmapFactory.java:527)
11-09 13:39:32.870: E/AndroidRuntime(2511):     at android.graphics.BitmapFactory.decodeFile(BitmapFactory.java:301)
11-09 13:39:32.870: E/AndroidRuntime(2511):     at com.example.testproject1.Imgloader.loadImageFromSDCard(Imgloader.java:60)
11-09 13:39:32.870: E/AndroidRuntime(2511):     at com.example.testproject1.Imgloader.access$0(Imgloader.java:50)
11-09 13:39:32.870: E/AndroidRuntime(2511):     at com.example.testproject1.Imgloader$SDLoadImageTask.doInBackground(Imgloader.java:177)
11-09 13:39:32.870: E/AndroidRuntime(2511):     at com.example.testproject1.Imgloader$SDLoadImageTask.doInBackground(Imgloader.java:1)
11-09 13:39:32.870: E/AndroidRuntime(2511):     at android.os.AsyncTask$2.call(AsyncTask.java:287)
11-09 13:39:32.870: E/AndroidRuntime(2511):     at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:305)
11-09 13:39:32.870: E/AndroidRuntime(2511):     ... 5 more
11-09 13:39:32.970: E/dalvikvm-heap(2511): Out of memory on a 20155408-byte allocation.
11-09 13:39:46.530: E/DhcpStateMachine(424): DHCP failed on wlan0: Timed out waiting for DHCP to finish
11-09 13:39:46.749: E/WifiStateMachine(424): IP configuration failed
11-09 13:40:18.180: E/DhcpStateMachine(424): DHCP failed on wlan0: Timed out waiting for DHCP to finish
11-09 13:40:18.399: E/WifiStateMachine(424): IP configuration failed
11-09 13:40:18.399: E/WifiStateMachine(424): Failed 10 times, Disabling 3
4

2 回答 2

1

Since you havent mentioned the SDK version that you can targeting, the best performance can be obtained through Render Script

A sample of its usage can also be found at http://developer.android.com/guide/topics/renderscript/compute.html

于 2012-11-09T16:17:22.867 回答
1

我使用以下方法根据经验确定的最大内存大小来缩放图像max_size,我的目的是 2,000,000。

private Bitmap decodeUri(Uri selectedImage) throws FileNotFoundException {

    InputStream inputStream = getContentResolver().openInputStream(
            selectedImage);
    UriHelper uriHelper = new UriHelper(this);
    mSaveFilenameRoot = uriHelper.getFilenameRoot(selectedImage);

    // Decode image size
    BitmapFactory.Options o = new BitmapFactory.Options();
    o.inJustDecodeBounds = true;
    BitmapFactory.decodeStream(inputStream, null, o);
    try {
        inputStream.close();
    } catch (IOException e) {
        e.printStackTrace();
    }

    // Find the correct scale value. A power of 2 is best (fastest)
    // however using the scaling that maximizes the size of the image.
    int width_tmp = o.outWidth, height_tmp = o.outHeight;
    int scale = 1;

    // maximum size due to heap size limitations
            // Bytes required based on width x height x 4 bytes per pixel
    int max_size = 2000000;
    while (true) {
        if (((width_tmp / scale) * (height_tmp / scale) * 4) < max_size)
            break;
        scale++;
    }

    // Decode the image at the appropriate scale
    inputStream = getContentResolver().openInputStream(selectedImage);
    o = new BitmapFactory.Options();
    o.inSampleSize = scale;
    o.inPreferredConfig = Bitmap.Config.RGB_565;
    Bitmap tmpBitmap = BitmapFactory.decodeStream(inputStream, null, o);
    try {
        inputStream.close();
    } catch (IOException e) {
        e.printStackTrace();
    }
    return tmpBitmap;
}
于 2012-11-09T14:31:13.510 回答