Android2.2缩略图类ThumbnailUtils

本文详细介绍了Android2.2中ThumbnailUtils类提供的四个静态方法,用于创建图片和视频的缩略图。包括从文件路径创建图像缩略图、从视频文件创建缩略图、以及从源位图创建指定大小的居中缩略图。

提供了四个对外的静态接口 
1. Bitmap android.media.ThumbnailUtils.createImageThumbnail(String filePath, int kind) 

This method first examines if the thumbnail embedded in EXIF is bigger than our target size. If not, then it'll create a thumbnail from original image. Due to efficiency consideration, we want to let MediaThumbRequest avoid calling this method twice for both kinds, so it only requests for MICRO_KIND and set saveImage to true. This method always returns a "square thumbnail" for MICRO_KIND thumbnail. 

Parameters: 
    filePath the path of image file 
    kind could be MINI_KIND or MICRO_KIND 
Returns: 
    Bitmap 
@hide 
    This method is only used by media framework and media provider internally. 

2. Bitmap android.media.ThumbnailUtils.createVideoThumbnail(String filePath, int kind) 
返回视频缩略图,如果视频损坏或格式不被支持那么都将返回为空 
filePath:视频文件的位置 
kind:Images.Thumbnails.MICRO_KIND或者Images.Thumbnails.MINI_KIND最终和分辨率有关 

3. Bitmap android.media.ThumbnailUtils.extractThumbnail(Bitmap source, int width, int height) 
创建一个指定大小居中的缩略图 

4. Bitmap android.media.ThumbnailUtils.extractThumbnail(Bitmap source, int width, int height, int options) 
创建一个指定大小居中的缩略图,如果options定义为OPTIONS_RECYCLE_INPUT,则回收资源 


ThumbnailUtils类是API Level从8或更高才开始支持的,不向下兼容

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值