Java代码:
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);
//bitmap.createScaledBitmap(bitmap, width, height, true);
// 利用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;
}
}
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="图片缩略图" />
<ImageView
android:id="@+id/image_thumbnail"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="视频缩略图" />
<ImageView
android:id="@+id/video_thumbnail"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
源:
http://blog.csdn.net/akon_vm/article/details/7419274
分享到:
相关推荐
1:获取sdcard 图片并以listview显示,并显示其缩略图 2:获取sdcard 视频并以listview显示,并显示其缩略图 3:在显示其缩略图时通过asynctask 来显示,防止阻塞主ui 4: 获取的缩略图保存在缓存中,下次显示时直接...
在获取多媒体库视频、音频、图片时,可能需要生成缩略图,以便快速 preview。Android 提供了 ThumbnailUtils 类,可以用来生成缩略图。下面是一个简单的示例代码: ```java Bitmap bitmap = ThumbnailUtils....
本资源提供了一个适合学习者使用的实例,涵盖了多个关键知识点,包括读取数据库、从SD卡读取图片、生成缩略图、使用GridView和Gallery组件。下面将对这些知识点进行详细的解释和探讨。 首先,我们来看“读取查找...
本文将深入探讨如何在Android应用中有效地处理图片,包括如何获取缩略图、按固定大小压缩图片以及保存压缩后的图片等内容。 #### 一、理解BitmapFactory及其选项 在Android中,`BitmapFactory`是用于解码和创建`...
例如,如果`inSampleSize`设为2,则取出的缩略图的宽和高均为原始图片的1/2,图片大小则为原始大小的1/4。 2. **inJustDecodeBounds**:当该属性设为`true`时,`BitmapFactory`在解码图片时不会真正返回`Bitmap`对象...
但需要注意的是,为了性能考虑,通常我们会使用内存管理和缩略图技术,如`BitmapFactory.Options`的`inSampleSize`属性,来降低加载图片的内存消耗: ```java Bitmap bitmap = BitmapFactory.decodeFile(imageFile....
在Android开发中,图片压缩是一项常见的任务,尤其在处理用户上传、显示图片或者创建缩略图时。Android提供了多种方式来实现图片的压缩,这里主要介绍一种基于`BitmapFactory`的简单图片压缩方法。 首先,我们需要...
不设置此参数或使用默认值,相机应用可能会返回一个小尺寸的缩略图,而不是原始高分辨率图像。设置此参数能确保获取到完整分辨率的图片。 3. **文件路径与命名**: - 文件路径通常存储在外部存储(SD卡)上,这里...
但是,直接加载大图可能会导致内存溢出,因此需要考虑使用缩略图或者内存管理策略。 #### 3.2 使用第三方库 为了优化性能和内存管理,开发者通常会使用第三方库,如Picasso、Glide或 Fresco。这些库能自动处理内存...
当用户拍摄完照片并点击确定后,系统会回调应用程序的`onActivityResult()`方法,此时可以通过`data.getExtras().get("data")`获取到一个缩略图版本的`Bitmap`对象。例如: ```java @Override protected void ...
这种技术在处理大量图像或者需要节省内存的应用场景中非常有用,例如在图片预览、缩略图生成或适应屏幕尺寸的图像加载时。通过预先获取图像的尺寸,我们可以提前计算出合适的缩放比例,从而避免加载过大图像导致的...
此外,对于较大的GIF,还可以考虑使用缩略图或预加载策略。 综上所述,"測試過GIF動畫組件源原始碼"涉及到Android开发中的GIF处理、自定义组件开发、文件存储、内存管理、以及性能优化等多个方面。通过理解这些知识...
此外,MediaMetadataRetriever还能获取视频帧作为Bitmap,这对于创建预览图或缩略图非常有用。例如: ```java Bitmap frame = retriever.getFrameAtTime(0, MediaMetadataRetriever.OPTION_CLOSEST_SYNC); ``` 总...
4. **图像处理**:可能使用了 Android 的 BitmapFactory 类来加载和解码截图,以及其它图像处理库进行缩略图生成,以优化性能和内存使用。 5. **数据库存储**:应用可能使用 SQLite 数据库来存储截图信息,如应用名...