2015年4月15日 星期三

【Android】Bitmap too large to be uploaded into a texture


拍了張照, 結果像素太大, 無法   setImageBitmap ,

所以簡單的轉換一下



    private Bitmap bitmapTooBigProcess(Bitmap bitmap) {
        int nh = 0;
        if (bitmap != null) {
            nh = (int) (bitmap.getHeight() * (512.0 / bitmap.getWidth()));
        }

        return Bitmap.createScaledBitmap(bitmap, 512, nh, true);
    }

沒有留言:

張貼留言