本文共 868 字,大约阅读时间需要 2 分钟。
public class ThumbnailUtils extends Object
java.lang.Object
android.media.ThumbnailUtils
二、概述
public static final int OPTIONS_RECYCLE_INPUT
常量用于表示应该回收输入源图片(第一个参数),除非输出图片就是输入图片。
常量值:2 (0x00000002)
四、公共方法
public static Bitmap createVideoThumbnail (String filePath, int kind)
创建一张视频的缩略图。如果视频已损坏或者格式不支持可能返回null。
参数
filePath 视频文件路径
kind 可以为MINI_KIND 或MICRO_KIND
public static Bitmap extractThumbnail (Bitmap source, int width, int height, int options)
创建所需尺寸居中缩放的位图。
参数
source 原始位图源
width 目标宽
height 目标高
options 在缩略图抽取时提供的选项
public static Bitmap extractThumbnail (Bitmap source, int width, int height)
创建所需尺寸居中缩放的位图。
参数
source 原始位图源
width 目标宽
height 目标高
五、补充
文章链接
(Android123)
[推荐] (Android123)
本文转自博客园农民伯伯的博客,原文链接:,如需转载请自行联系原博主。