我需要图片缩略图。我只知道存储在SD卡中的图像名称。任何人都可以帮助我。
答案 0 :(得分:58)
试试这个。
final int THUMBSIZE = 64;
Bitmap ThumbImage = ThumbnailUtils.extractThumbnail(BitmapFactory.decodeFile(imagePath),
THUMBSIZE, THUMBSIZE);
Refer this了解详情。
答案 1 :(得分:7)
使用MediaStore.Images.Thumbnails
,您可以查询并获取两种缩略图:MINI_KIND:512 x 384缩略图MICRO_KIND:96 x 96缩略图。
使用此调用的优点是MediaStore缓存了缩略图。因此,如果先前创建了缩略图,则检索会更快。
答案 2 :(得分:1)
byte[] imageData = null;
try
{
final int THUMBNAIL_SIZE = 64;
FileInputStream fis = new FileInputStream(fileName);
Bitmap imageBitmap = BitmapFactory.decodeStream(fis);
Float width = new Float(imageBitmap.getWidth());
Float height = new Float(imageBitmap.getHeight());
Float ratio = width/height;
imageBitmap = Bitmap.createScaledBitmap(imageBitmap, (int)(THUMBNAIL_SIZE * ratio), THUMBNAIL_SIZE, false);
ByteArrayOutputStream baos = new ByteArrayOutputStream();
imageBitmap.compress(Bitmap.CompressFormat.JPEG, 100, baos);
imageData = baos.toByteArray();
}
catch(Exception ex) {
}
答案 3 :(得分:0)
如果您喜欢HQ缩略图,请使用[RapidDecoder] [1]库。它很简单如下:
import rapid.decoder.BitmapDecoder;
...
Bitmap bitmap = BitmapDecoder.from(getResources(), R.drawable.image)
.scale(width, height)
.useBuiltInDecoder(true)
.decode();
如果您希望缩小小于50%和HQ结果,请不要忘记使用内置解码器。