public static Bitmap ChangeAlpha(Bitmap bitmap, decimal factor) { var n = new NikseBitmap(bitmap); n.ChangeAlpha(factor); return(n.GetBitmap()); }