您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關Android 實現將本地資源圖片轉換成Drawable的方法,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。
整個過程的思路:
將本地圖片(R.drawable.image)變成Drawable對象
將Drawable對象轉換成Bitmap對象
將Bitmap對象根據指定大小創建一個新的Bitmap對象
將Bitmap對象轉換成Drawable對象
代碼:
1. 將本地圖片(R.drawable.image)變成Drawable對象
Drawable drawable = ContextCompat.getDrawable(context, R.drawable.image);
2. 將Drawable對象轉換成Bitmap對象
/** * 將Drawable轉換為Bitmap * @param drawable * @return */ private Bitmap drawableToBitmap(Drawable drawable) { //取drawable的寬高 int width = drawable.getIntrinsicWidth(); int height = drawable.getIntrinsicHeight(); //取drawable的顏色格式 Bitmap.Config config = drawable.getOpacity() != PixelFormat.OPAQUE ? Bitmap.Config.ARGB_8888 : Bitmap.Config.RGB_565; //創建對應的bitmap Bitmap bitmap = Bitmap.createBitmap(width, height, config); //創建對應的bitmap的畫布 Canvas canvas = new Canvas(bitmap); drawable.setBounds(0, 0, width, height); //把drawable內容畫到畫布中 drawable.draw(canvas); return bitmap; }
3. 整個流程的執行
后來發現一個更簡潔的方法
/** * 將本地資源圖片大小縮放 * @param resId * @param w * @param h * @return */ public Drawable zoomImage(int resId, int w, int h){ Resources res = mContext.getResources(); Bitmap oldBmp = BitmapFactory.decodeResource(res, resId); Bitmap newBmp = Bitmap.createScaledBitmap(oldBmp,w, h, true); Drawable drawable = new BitmapDrawable(res, newBmp); return drawable; }
原來復雜的思路
/** * 縮放Drawable *@drawable 原來的Drawable *@w 指定的寬 *@h 指定的高 */ public Drawable zoomDrawable(Drawable drawable, int w, int h){ //獲取原來Drawable的寬高 int width = drawable.getIntrinsicWidth(); int height = drawable.getIntrinsicHeight(); //將Drawable轉換成Bitmap Bitmap oldbmp = drawableToBitmap(drawable); //計算scale Matrix matrix = new Matrix(); float scaleWidth = ((float)w/width); float scaleHeight = ((float)h/height); matrix.postScale(scaleWidth, scaleHeight); //生成新的Bitmap Bitmap newbmp = Bitmap.createBitmap(oldbmp, 0, 0, width, height, matrix, true); //設置bitmap轉成drawable后尺寸不變 //這個很關鍵后面解釋!! DisplayMetrics metrics = new DisplayMetrics(); manager.getDefaultDisplay().getMetrics(metrics); Resources resources = new Resources(mContext.getAssets(), metrics, null); return new BitmapDrawable(resources, newbmp); }
學習中遇到的問題
看網上的教程是沒有下面
DisplayMetrics metrics = new DisplayMetrics(); manager.getDefaultDisplay().getMetrics(metrics); Resources resources = new Resources(mContext.getAssets(), metrics, null);
這段代碼的。
假如我指定的寬高是200,生成的Drawable的寬高卻只有100。
原來Bitmap轉換成Drawable的尺寸是會變小的。
那段代碼就能解決尺寸變小的問題。
如果路過的大神有更好的方法,希望能指點一下小白。
補充知識:Android中如何將res里的圖片轉換成Bitmap.
1.復制代碼即可:
Resources res = MainActivity.this.getResources();
Bitmap bmp= BitmapFactory.decodeResource(res, R.mipmap.flower);
關于Android 實現將本地資源圖片轉換成Drawable的方法就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。