0

我可以成功地将给定的 Base64 字符串转换为 Android 中的相应图像。为了在我的应用程序中测试这个场景,我从我的可绘制文件夹中取出一张图像,并使用这个网站将其转换为相应的 Base64 字符串:Motobit.com。我在这个网站上给出的图像是这样的: 在此处输入图像描述

它的尺寸为 23X25 像素,大小为 46.3KB。在我的 Android 中使用以下代码,我将此图像的 Base64 转换为 Image,如下所示:

byte[] decodedString = Base64.decode(tabData.getString("TabIconImageData"), Base64.DEFAULT);
                            BitmapFactory.Options options = new Options();
                            options.inJustDecodeBounds = true;
                            options.inSampleSize = calculateInSampleSize(options, 500, 500);
                            options.inJustDecodeBounds = false;
                            Bitmap decodedByte = BitmapFactory.decodeByteArray(decodedString, 0, decodedString.length,options);
    myImageView.setImageBitmap(decodedByte);
    public static int calculateInSampleSize(BitmapFactory.Options options,
                int reqWidth, int reqHeight) {
            // Raw height and width of image
            final int height = options.outHeight;
            final int width = options.outWidth;
            int inSampleSize = 1;
    
            if (height > reqHeight || width > reqWidth) {
    
                // Calculate ratios of height and width to requested height and
                // width
                final int heightRatio = Math.round((float) height
                        / (float) reqHeight);
                final int widthRatio = Math.round((float) width / (float) reqWidth);
    
                // Choose the smallest ratio as inSampleSize value, this will
                // guarantee
                // a final image with both dimensions larger than or equal to the
                // requested height and width.
                inSampleSize = heightRatio < widthRatio ? heightRatio : widthRatio;
            }
    
            return inSampleSize;
        }

Base64 字符串在图像中已成功转换,但它的大小看起来几乎是原始图像的一半。我想要原始大小的图像以及PNG格式的图像。请指导我解决这个问题。

4

1 回答 1

1
ByteArrayOutputStream bos = new ByteArrayOutputStream();
        Bitmap btm = decodeBase64("Base64 String");
        Bitmap bt=Bitmap.createScaledBitmap(btm, btm.getWidth(), btm.getHeight(), false);
        company_logo.setImageBitmap(bt);

和这个

public static Bitmap decodeBase64(String input) 
{
    byte[] decodedByte = Base64.decode(input, 0);
    return BitmapFactory.decodeByteArray(decodedByte, 0, decodedByte.length); 
}
于 2013-05-03T10:08:46.493 回答