广告
返回顶部
首页 > 资讯 > 移动开发 >Android编程获取图片和视频缩略图的方法
  • 854
分享到

Android编程获取图片和视频缩略图的方法

方法图片缩略图Android 2022-06-06 08:06:11 854人浏览 泡泡鱼
摘要

本文实例讲述了Android编程获取图片和视频缩略图的方法。分享给大家供大家参考,具体如下: 从Android 2.2开始系统新增了一个缩略图ThumbnailUtils类,位

本文实例讲述了Android编程获取图片和视频缩略图的方法。分享给大家供大家参考,具体如下:

从Android 2.2开始系统新增了一个缩略图ThumbnailUtils类,位于framework的android.media.ThumbnailUtils位 置,可以帮助我们从mediaprovider中获取系统中的视频或图片文件的缩略图,该类提供了三种静态方法可以直接调用获取。

1. createVideoThumbnail


static Bitmap createVideoThumbnail(String filePath, int kind)
//获取视频文件的缩略图
//第一个参数为视频文件的位置,比如/sdcard/android123.3gp,
//第二个参数可以为MINI_KIND或 MICRO_KIND最终和分辨率有关

2. extractThumbnail


static Bitmap extractThumbnail(Bitmap source, int width, int height, int options)
//直接对Bitmap进行缩略操作
//最后一个参数定义为OPTIONS_RECYCLE_INPUT ,来回收资源

3. extractThumbnail


static Bitmap extractThumbnail(Bitmap source, int width, int height)
// 这个和上面的方法一样,无options选项

获取手机里视频缩略图:


public static Bitmap getVideoThumbnail(ContentResolver cr, Uri uri) {
  Bitmap bitmap = null;
  BitmapFactory.Options options = new BitmapFactory.Options();
  options.inDither = false;
  options.inPreferredConfig = Bitmap.Config.ARGB_8888;
  Cursor cursor = cr.query(uri,new String[] { MediaStore.Video.Media._ID }, null, null, null);
  if (cursor == null || cursor.getCount() == 0) {
 return null;
  }
  cursor.moveToFirst();
  String videoId = cursor.getString(cursor.getColumnIndex(MediaStore.Video.Media._ID)); //image id in image table.s
  if (videoId == null) {
  return null;
  }
  cursor.close();
  long videoIdLong = Long.parseLong(videoId);
  bitmap = MediaStore.Video.Thumbnails.getThumbnail(cr, videoIdLong,Images.Thumbnails.MICRO_KIND, options);
  return bitmap;
}

获得指定目录sdcard里的视频缩略图:


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;

public class AndroidTestActivity extends Activity {
   private ImageView imageThumbnail;
   private ImageView videoThumbnail;
   
   @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));
   }
   
   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;
   }
   
   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>

更多关于Android相关内容感兴趣的读者可查看本站专题:《Android图形与图像处理技巧总结》、《Android开发入门与进阶教程》、《Android资源操作技巧汇总》、《Android视图View技巧总结》及《Android控件用法总结》

希望本文所述对大家Android程序设计有所帮助。

您可能感兴趣的文章:Android开发之多媒体文件获取工具类实例【音频,视频,图片等】Android多媒体之VideoView视频播放器Android多媒体教程之播放视频的四种方法Android开发之MediaPlayer多媒体(音频,视频)播放工具类Android开发实现的IntentUtil跳转多功能工具类【包含视频、音频、图片、摄像头等操作功能】Android中简单调用图片、视频、音频、录音和拍照的方法android 获取视频,图片缩略图的具体实现Android获取SD卡上图片和视频缩略图的小例子Android如何获取图片或视频略缩图android提取视频多张图片和视频信息实例Android编程实现获取多媒体库视频、音频、图片的方法


--结束END--

本文标题: Android编程获取图片和视频缩略图的方法

本文链接: https://www.lsjlt.com/news/25195.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

本篇文章演示代码以及资料文档资料下载

下载Word文档到电脑,方便收藏和打印~

下载Word文档
猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作