中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

如何在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

涪陵区| 崇信县| 河津市| 江山市| 桐柏县| 松滋市| 建阳市| 香港| 准格尔旗| 呼和浩特市| 台湾省| 河南省| 中卫市| 偃师市| 凉山| 新乐市| 周口市| 九龙坡区| 无极县| 明光市| 文山县| 河西区| 藁城市| 迁安市| 怀柔区| 永仁县| 富宁县| 胶南市| 桦川县| 南投市| 子洲县| 新余市| 元朗区| 福泉市| 方正县| 健康| 宁乡县| 平顺县| 雅安市| 延吉市| 福贡县|