Android--生成縮圖------方法總結
第一種是BitmapFactory和BitmapFactory.Options。
首先,BitmapFactory.Options有幾個Fields很有用:
inJustDecodeBounds:If set to true, the decoder will return null (no bitmap), but the out...
也就是說,當inJustDecodeBounds設成true時,bitmap並不載入到記憶體,這樣效率很高哦。而這時,你可以獲得bitmap的高、寬等資訊。
outHeight:The resulting height of the bitmap, set independent of the state of inJustDecodeBounds.
outWidth:The resulting width of the bitmap, set independent of the state of inJustDecodeBounds.
看到了吧,上面3個變數是相關聯的哦。
inSampleSize :If set to a value > 1, requests the decoder to subsample the original image, returning a smaller image to save memory.
這就是用來做縮放比的。這裡有個技巧:
inSampleSize=(outHeight/Height+outWidth/Width)/2
實踐證明,這樣縮放出來的圖片還是很好的。
最後用BitmapFactory.decodeFile(path, options)生成。
由於只是對bitmap載入到記憶體一次,所以效率比較高。解析速度快。
第二種是使用Bitmap加Matrix來縮放。
首先要獲得原bitmap,再從原bitmap的基礎上生成新圖片。這樣效率很低。
第三種是用2.2新加的類ThumbnailUtils來做。
讓我們新看看這個類,從API中來看,此類就三個靜態方法:createVideoThumbnail、extractThumbnail(Bitmap source, int width, int height, int options)、extractThumbnail(Bitmap source, int width, int height)。
我這裡使用了第三個方法。再看看它的原始碼,下面會附上。是上面我們用到的BitmapFactory.Options和Matrix等經過人家一陣加工而成。
效率好像比第二種方法高一點點。
下面是我的例子:
- <?xmlversion="1.0"encoding="utf-8"?>
- <LinearLayoutxmlns:android="http://schemas.android.com/apk/res/android"
- android:orientation="vertical"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- >
- <ImageView
- android:id="@+id/imageShow"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- />
- <ImageView
- android:id="@+id/image2"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- />
- <TextView
- android:id="@+id/text"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:text="@string/hello"
- />
- </LinearLayout>
- package com.linc.ResolvePicture;
- import java.io.File;
- import java.io.FileNotFoundException;
- import java.io.FileOutputStream;
- import java.io.IOException;
- import android.app.Activity;
- import android.graphics.Bitmap;
- import android.graphics.BitmapFactory;
- import android.graphics.Matrix;
- import android.graphics.drawable.BitmapDrawable;
- import android.graphics.drawable.Drawable;
- import android.media.ThumbnailUtils;
- import android.os.Bundle;
- import android.util.Log;
- import android.widget.ImageView;
- import android.widget.TextView;
- publicclass ResolvePicture extends Activity {
- privatestatic String tag="ResolvePicture";
- Drawable bmImg;
- ImageView imView;
- ImageView imView2;
- TextView text;
- String theTime;
- long start, stop;
- /** Called when the activity is first created. */
- @Override
- publicvoid onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- setContentView(R.layout.main);
- text=(TextView)findViewById(R.id.text);
- imView=(ImageView) findViewById(R.id.imageShow);
- imView2=(ImageView) findViewById(R.id.image2);
- Bitmap bitmap = BitmapFactory.decodeResource(getResources(),
- R.drawable.pic);
- start=System.currentTimeMillis();
- // imView.setImageDrawable(resizeImage(bitmap, 300, 100));
- imView2.setImageDrawable(resizeImage2("/sdcard/2.jpeg", 200, 100));
- stop=System.currentTimeMillis();
- String theTime= String.format("\n1 iterative: (%d msec)",
- stop - start);
- start=System.currentTimeMillis();
- imView.setImageBitmap(ThumbnailUtils.extractThumbnail(bitmap,200,100));//2.2才加進來的新類,簡單易用
- // imView.setImageDrawable(resizeImage(bitmap, 30, 30));
- stop=System.currentTimeMillis();
- theTime+= String.format("\n2 iterative: (%d msec)",
- stop - start);
- text.setText(theTime);
- }
- //使用Bitmap加Matrix來縮放
- publicstatic Drawable resizeImage(Bitmap bitmap, int w, int h)
- {
- Bitmap BitmapOrg = bitmap;
- int width = BitmapOrg.getWidth();
- int height = BitmapOrg.getHeight();
- int newWidth = w;
- int newHeight = h;
- float scaleWidth = ((float) newWidth) / width;
- float scaleHeight = ((float) newHeight) / height;
- Matrix matrix = new Matrix();
- matrix.postScale(scaleWidth, scaleHeight);
- // if you want to rotate the Bitmap
- // matrix.postRotate(45);
- Bitmap resizedBitmap = Bitmap.createBitmap(BitmapOrg, 0, 0, width,
- height, matrix, true);
- returnnew BitmapDrawable(resizedBitmap);
- }
- //使用BitmapFactory.Options的inSampleSize引數來縮放
- publicstatic Drawable resizeImage2(String path,
- int width,int height)
- {
- BitmapFactory.Options options = new BitmapFactory.Options();
-
相關推薦
Android--生成縮圖------方法總結
在Android中對大圖片進行縮放真的很不盡如人意,不知道是不是我的方法不對。下面我列出3種對圖片縮放的方法,並給出相應速度。請高人指教。 第一種是BitmapFactory和BitmapFactory.Options。 首先,BitmapFactory.Opti
Android生成縮圖的方法
Android9.0 之前,使用BitmapFactory生成縮圖。 舉例:使用ThumbnailTask生成縮圖,GridViewAdapter顯示縮圖 static class ThumbnailTask extends AsyncTask<Object, LoadedImag
php生成縮圖方法封裝
------------------------------------------------- 引數: $filename : 要裁剪的圖片路徑 $destination : 要生成的圖片資料夾和路徑 $dst_w : 要把圖片裁剪到多寬 $dst_h : 要把圖片裁剪到多高
php上傳圖片自動生成縮圖方法函式
$file_name='C:\AppServ\www\_MG_9888.jpg'; $file_new='C:\AppServ\www\bbbb.jpg'; scal_pic($file_name,$file_new); function scal_pic($file_n
Android之通過ContentResolver獲取手機圖片和視訊的路徑和生成縮圖和縮圖路徑
1 問題 獲取手機所有圖片和視訊的路徑和生成圖片和視訊的縮圖和縮圖路徑 生成縮圖我們用的系統函式 public static Bitmap getThumbnail(ContentResolver cr, long origId, int kind, Opti
PHP一個方法調整影象大小(生成縮圖)
背景: 天氣很冷 PHP程式碼: /** * @param $imagedata 影象資料 * @param $width 縮放寬度 * @param $height 縮放高度 * @param int $per 縮放
android視訊生成縮圖
Bitmap bitmap = ThumbnailUtils.createVideoThumbnail(data.getLocalityContent(), Video.Thumbnails.MINI_KIND); LogUtil.i(Tag, "wdh CH
C#生成縮圖不失真的方法
最近一個手持機專案有個需求,因為物料圖片的大小不一,有的很大顯示到手持機上會只顯示圖片的一部分,介面顯得非常亂,很影響客戶的體驗度。所以需要一個方法,將上傳到伺服器上的圖片進行處理,按照一定的大小格式進行儲存。 下面提供了兩種獲取圖片縮圖的方法,供大家參考。
thinkphp5上傳圖片及生成縮圖公共方法
直接上程式碼,可以寫在公共檔案common和繼承的基礎類中,方便呼叫 /* * $name為表單上傳的name值 * $filePath為為儲存在入口資料夾public下面uploads/下面的資料夾名稱,沒有的話會自動建立 * $width指
Android截圖方法總結
最近研究了一些Android的截圖方法,做一個總結。 圖片剪裁方法 使用View.getDrawingCache()得到Bitmap。非常簡單但是隻能截圖本應用的圖片,並且沒辦法控制截圖的範圍。 對Bitmap進行截圖。可以方便的操作擷取大小,但是
Android開發根據Json直接生成Java Bean方法總結
在開發過程中拿到從伺服器請求的json字串需要解析成Bean物件方便我們使用,自己寫bean又太麻煩 經過這麼長時間的Android開發,我收集了三種比較常用的通過json自動生成Bean物件的方法:
C++生成隨機數的方法總結
oca cnblogs nbsp seconds wmi iostream 代碼 cin std 網上有很多使用C++生成隨機數的文章,其原理不再贅述,這裏貼出windows系統上生成各種隨機數的代碼,方便查用。 1 #include <iostream>
java按比例之原圖生成縮圖
package com.wxp.test; import java.awt.Image; import java.awt.image.BufferedImage; import java.io.File; import java.io.FileOutputStream; import jav
android平臺開發debug方法總結
一. 獲取Trace 呼叫棧資訊(Trace)是分析異常經常使用的,這裡簡單劃分兩類情況: 當前執行緒Trace: 當前執行流所線上程的呼叫棧資訊; 目標程序Trace:可獲取目標程序的呼叫棧,用於動態除錯; 1.1 當前執行緒Trace 1) Java層
unity 生成縮圖
根據記憶體的圖片生成縮圖 public void CreateThumbnail(byte[] bytes, string path) { int w = 125, h = 125; Text
js生成縮圖
1.傳遞三個引數 url(連線),width(寬度),height(高度) function(url, width, height) { if (!url) { return ''; } if (!width || !height) { return
Android App測試分析方法(總結 && 重寫)
前言: nick說過,沒個人都要有一套自己的測試方法,針對模組有一套自己的解決思路,之後一直在尋找。雖然之前寫過一次,但是還是欠缺了什麼,至少框架不變,慢慢補充細節吧! 元素分析: 這裡之前一篇只分析了靜態的元素,經過工作中實踐後應該擴充
【Android】縮圖Thumbnails
在Android,多媒體檔案(視訊和圖片)都是有縮圖的,在很多應用中,我們需要獲取這些縮圖。比如最近在做一個類似相簿的應用,需要掃描相簿裡面的圖片,然後獲取其縮圖,使用GridView去展示縮圖,當點選之後,我們需要獲取其原始圖,所以相關的需求如下: 1)獲取縮圖(一個問
Android端影象處理方法總結
Android端影象處理方法 在Android機中進行影象處理,常用的方式有兩種: 一種是單純使用JAVA語言進行圖形處理,相當於你將C或者C++編寫的影象處理方法,又重新用JAVA編寫了一遍。這種開發方法需要你在opencv官網,首先下載好Opencv的Android的版本,然後將它
C#上傳視訊生成縮圖
注意:需要FFmpeg軟體,用到ffmpeg.exe;FFmpeg是一個開源免費跨平臺的視訊和音訊流方案,屬於自由軟體,採用LGPL或GPL許可證(依據你選擇的元件)。它提供了錄製、轉換以及流化音視訊的完整解決方案。 前臺程式碼 <%@ Page Language