91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何在Android中實現一個高斯模糊效果

發布時間:2021-04-17 17:28:47 來源:億速云 閱讀:1440 作者:Leah 欄目:移動開發

這篇文章給大家介紹如何在Android中實現一個高斯模糊效果,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

1、使用Glide

Glide.with(this)
     .load(service.getImageUri())
     .dontAnimate()
     .error(R.drawable.error_img)
     // 設置高斯模糊
     .bitmapTransform(new BlurTransformation(this, 14, 3))
     .into(imageview);

適用場景:動態配置的背景圖片

2、對圖片高斯模糊,需要先將圖片轉成bitmap對象

mport android.annotation.TargetApi;
import android.content.Context;
import android.graphics.Bitmap;
import android.os.Build;
import android.renderscript.Allocation;
import android.renderscript.Element;
import android.renderscript.RenderScript;
import android.renderscript.ScriptIntrinsicBlur;
public class BlurBitmapUtil {
 // 圖片縮放比例(即模糊度)
 private static final float BITMAP_SCALE = 0.4f;
 /**
  * @param context 上下文對象
  * @param image 需要模糊的圖片
  * @return 模糊處理后的Bitmap
  */
 @TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR1)
 public static Bitmap blurBitmap(Context context, Bitmap image, float blurRadius) {
  // 計算圖片縮小后的長寬
  int width = Math.round(image.getWidth() * BITMAP_SCALE);
  int height = Math.round(image.getHeight() * BITMAP_SCALE);
  // 將縮小后的圖片做為預渲染的圖片
  Bitmap inputBitmap = Bitmap.createScaledBitmap(image, width, height, false);
  // 創建一張渲染后的輸出圖片
  Bitmap outputBitmap = Bitmap.createBitmap(inputBitmap);
  // 創建RenderScript內核對象
  RenderScript rs = RenderScript.create(context);
  // 創建一個模糊效果的RenderScript的工具對象
  ScriptIntrinsicBlur blurScript = ScriptIntrinsicBlur.create(rs, Element.U8_4(rs));
  // 由于RenderScript并沒有使用VM來分配內存,所以需要使用Allocation類來創建和分配內存空間
  // 創建Allocation對象的時候其實內存是空的,需要使用copyTo()將數據填充進去
  Allocation tmpIn = Allocation.createFromBitmap(rs, inputBitmap);
  Allocation tmpOut = Allocation.createFromBitmap(rs, outputBitmap);
  // 設置渲染的模糊程度, 25f是最大模糊度
  blurScript.setRadius(blurRadius);
  // 設置blurScript對象的輸入內存
  blurScript.setInput(tmpIn);
  // 將輸出數據保存到輸出內存中
  blurScript.forEach(tmpOut);
  // 將數據填充到Allocation中
  tmpOut.copyTo(outputBitmap);
  return outputBitmap;
 }
}

不推薦:使用bitmap,頻繁操作的話比較耗性能。

3、使用高斯模糊遮罩,可以對指定區域進行模糊,不需要處理單張圖片(推薦!!)

推薦一個github上的項目,親測有效。https://github.com/mmin18/RealtimeBlurView

<com.github.mmin18.widget.RealtimeBlurView
      android:id="@+id/blurview"
      android:layout_width="match_parent"
      android:layout_height="210dp"
      android:visibility="gone"
      app:realtimeBlurRadius="5dp"
      app:realtimeOverlayColor="#00000000" />

關于如何在Android中實現一個高斯模糊效果就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

东平县| 田阳县| 甘泉县| 百色市| 南昌市| 长乐市| 盐城市| 达日县| 横山县| 泸西县| 厦门市| 湄潭县| 建瓯市| 大邑县| 炎陵县| 鹤庆县| 宝坻区| 汉寿县| 汶川县| 永年县| 常州市| 铜山县| 青阳县| 惠来县| 湖南省| 平利县| 武定县| 富民县| 乐业县| 新巴尔虎左旗| 铜陵市| 文登市| 大丰市| 霍林郭勒市| 桦川县| 门源| 宜宾县| 临朐县| 大余县| 宣化县| 巴东县|