我正在使用Native Shared項目開發Xamarin應用程序。 這是我的位圖反演濾波方法 using System;
using Android.Graphics;
public static Bitmap Inversion (Bitmap bmp) {
for (int x = 0; x < bmp.Width; x++)
{
for (in
編輯:我發現了一個解決方案。儘管它更奇怪的解決方法。答案在下面。 我有一個位圖的兩個副本。其中一個變得模糊和放大。另一個應該保持原來的樣子,但有些東西會對它施加相同的模糊。我不太確定問題在哪。 public static Bitmap blur(Bitmap image, float radius, int runs, Context context) {
if (null == ima