Android之如何獲取視頻或者圖片的縮略圖

import java.io.File;
import android.app.Activity;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.media.ThumbnailUtils;
import android.os.Bundle;
import android.os.Environment;
import android.provider.MediaStore;
import android.widget.ImageView;
/**
 * 獲取圖片和視頻的縮略圖
 * 這兩個方法必須在2.2及以上版本使用,由於其中使用了ThumbnailUtils這個類
 */
public class AndroidTestActivity extends Activity {
private ImageView imageThumbnail;
private ImageView videoThumbnail;


/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);


imageThumbnail = (ImageView) findViewById(R.id.image_thumbnail);
videoThumbnail = (ImageView) findViewById(R.id.video_thumbnail);


String imagePath = Environment.getExternalStorageDirectory()
.getAbsolutePath()
+ File.separator
+ "photo"
+ File.separator
+ "yexuan.jpg";


String videoPath = Environment.getExternalStorageDirectory()
.getAbsolutePath()
+ File.separator
+ "video"
+ File.separator
+ "醋點燈.avi";

imageThumbnail.setImageBitmap(getImageThumbnail(imagePath, 60, 60));
videoThumbnail.setImageBitmap(getVideoThumbnail(videoPath, 60, 60,
MediaStore.Images.Thumbnails.MICRO_KIND));
}


/**
* 根據指定的圖像路徑和大小來獲取縮略圖
* 此方法有兩點好處:
*     1. 使用較小的內存空間,第一次獲取的bitmap實際上爲null,只是爲了讀取寬度和高度,
*        第二次讀取的bitmap是根據比例壓縮過的圖像,第三次讀取的bitmap是所要的縮略圖。
*     2. 縮略圖對於原圖像來說沒有拉伸,這裏使用了2.2版本的新工具ThumbnailUtils,使
*        用這個工具生成的圖像不會被拉伸。
* @param imagePath 圖像的路徑
* @param width 指定輸出圖像的寬度
* @param height 指定輸出圖像的高度
* @return 生成的縮略圖
*/
private Bitmap getImageThumbnail(String imagePath, int width, int height) {
Bitmap bitmap = null;
BitmapFactory.Options options = new BitmapFactory.Options();
options.inJustDecodeBounds = true;
// 獲取這個圖片的寬和高,注意此處的bitmap爲null
bitmap = BitmapFactory.decodeFile(imagePath, options);
options.inJustDecodeBounds = false; // 設爲 false
// 計算縮放比
int h = options.outHeight;
int w = options.outWidth;
int beWidth = w / width;
int beHeight = h / height;
int be = 1;
if (beWidth < beHeight) {
be = beWidth;
} else {
be = beHeight;
}
if (be <= 0) {
be = 1;
}
options.inSampleSize = be;
// 從新讀入圖片,讀取縮放後的bitmap,注意此次要把options.inJustDecodeBounds 設爲 false
bitmap = BitmapFactory.decodeFile(imagePath, options);
// 利用ThumbnailUtils來建立縮略圖,這裏要指定要縮放哪一個Bitmap對象
bitmap = ThumbnailUtils.extractThumbnail(bitmap, width, height,
ThumbnailUtils.OPTIONS_RECYCLE_INPUT);
return bitmap;
}


/**
* 獲取視頻的縮略圖
* 先經過ThumbnailUtils來建立一個視頻的縮略圖,而後再利用ThumbnailUtils來生成指定大小的縮略圖。
* 若是想要的縮略圖的寬和高都小於MICRO_KIND,則類型要使用MICRO_KIND做爲kind的值,這樣會節省內存。
* @param videoPath 視頻的路徑
* @param width 指定輸出視頻縮略圖的寬度
* @param height 指定輸出視頻縮略圖的高度度
* @param kind 參照MediaStore.Images.Thumbnails類中的常量MINI_KIND和MICRO_KIND。
*            其中,MINI_KIND: 512 x 384,MICRO_KIND: 96 x 96
* @return 指定大小的視頻縮略圖
*/
private Bitmap getVideoThumbnail(String videoPath, int width, int height,
int kind) {
Bitmap bitmap = null;
// 獲取視頻的縮略圖
bitmap = ThumbnailUtils.createVideoThumbnail(videoPath, kind);
System.out.println("w"+bitmap.getWidth());
System.out.println("h"+bitmap.getHeight());
bitmap = ThumbnailUtils.extractThumbnail(bitmap, width, height,
ThumbnailUtils.OPTIONS_RECYCLE_INPUT);
return bitmap;
}

} java



本文引用自:http://blog.csdn.net/akon_vm/article/details/7419274 android

相關文章
相關標籤/搜索