android三种载入图片方式
生活随笔
收集整理的這篇文章主要介紹了
android三种载入图片方式
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
package smalt.music.utils;?
?
import android.graphics.Bitmap;?
import android.graphics.BitmapFactory;?
import android.graphics.BitmapFactory.Options;?
?
//加載圖片的方法:3種?
public class BitmapUntil {?
??? // 直接載入圖片?
??? public static Bitmap getBitmap(String path) {?
??????? Bitmap bt = BitmapFactory.decodeFile(path);?
??????? return bt;?
??? }?
?
??? // 指定大小載入圖片
??? public static Bitmap getBitmap(String path, int size) {?
??????? Options op = new Options();?
??????? op.inSampleSize = size;?
??????? Bitmap bt = BitmapFactory.decodeFile(path, op);?
??????? return bt;? www.2cto.com
??? }?
?
??? // 按寬高壓縮載入圖片
??? public static Bitmap getBitmap(String path, int width, int heigh) {?
??????? Options op = new Options();?
??????? op.inJustDecodeBounds = true;?
??????? Bitmap bt = BitmapFactory.decodeFile(path, op);?
??????? int xScale = op.outWidth / width;?
??????? int yScale = op.outHeight / heigh;?
??????? op.inSampleSize = xScale > yScale ? xScale : yScale;?
??????? op.inJustDecodeBounds = false;?
??????? bt = BitmapFactory.decodeFile(path, op);?
??????? return bt;?
??? }?
}?
?
import android.graphics.Bitmap;?
import android.graphics.BitmapFactory;?
import android.graphics.BitmapFactory.Options;?
?
//加載圖片的方法:3種?
public class BitmapUntil {?
??? // 直接載入圖片?
??? public static Bitmap getBitmap(String path) {?
??????? Bitmap bt = BitmapFactory.decodeFile(path);?
??????? return bt;?
??? }?
?
??? // 指定大小載入圖片
??? public static Bitmap getBitmap(String path, int size) {?
??????? Options op = new Options();?
??????? op.inSampleSize = size;?
??????? Bitmap bt = BitmapFactory.decodeFile(path, op);?
??????? return bt;? www.2cto.com
??? }?
?
??? // 按寬高壓縮載入圖片
??? public static Bitmap getBitmap(String path, int width, int heigh) {?
??????? Options op = new Options();?
??????? op.inJustDecodeBounds = true;?
??????? Bitmap bt = BitmapFactory.decodeFile(path, op);?
??????? int xScale = op.outWidth / width;?
??????? int yScale = op.outHeight / heigh;?
??????? op.inSampleSize = xScale > yScale ? xScale : yScale;?
??????? op.inJustDecodeBounds = false;?
??????? bt = BitmapFactory.decodeFile(path, op);?
??????? return bt;?
??? }?
}?
總結
以上是生活随笔為你收集整理的android三种载入图片方式的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Android Activity为什么要
- 下一篇: java.lang.VerifyErro