當前位置: 首頁>>代碼示例>>C#>>正文


C# ColorBgra.GetIntensityByte方法代碼示例

本文整理匯總了C#中ColorBgra.GetIntensityByte方法的典型用法代碼示例。如果您正苦於以下問題:C# ColorBgra.GetIntensityByte方法的具體用法?C# ColorBgra.GetIntensityByte怎麽用?C# ColorBgra.GetIntensityByte使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在ColorBgra的用法示例。


在下文中一共展示了ColorBgra.GetIntensityByte方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: Apply

		public override ColorBgra Apply (ColorBgra color)
		{
			// Adjust saturation
			var intensity = color.GetIntensityByte ();
			color.R = Utility.ClampToByte ((intensity * 1024 + (color.R - intensity) * sat_factor) >> 10);
			color.G = Utility.ClampToByte ((intensity * 1024 + (color.G - intensity) * sat_factor) >> 10);
			color.B = Utility.ClampToByte ((intensity * 1024 + (color.B - intensity) * sat_factor) >> 10);

			var hsvColor = (new RgbColor (color.R, color.G, color.B)).ToHsv ();
			int hue = hsvColor.Hue;

			hue += hue_delta;

			while (hue < 0)
				hue += 360;

			while (hue > 360)
				hue -= 360;

			hsvColor.Hue = hue;

			var rgbColor = hsvColor.ToRgb ();
			var newColor = ColorBgra.FromBgr ((byte)rgbColor.Blue, (byte)rgbColor.Green, (byte)rgbColor.Red);
			
			newColor = blend_op.Apply (newColor);
			newColor.A = color.A;

			return newColor;
		}
開發者ID:PintaProject,項目名稱:Pinta.ImageManipulation,代碼行數:29,代碼來源:HueSaturationLightnessOp.cs

示例2: Apply

		public override ColorBgra Apply (ColorBgra color)
		{
			byte lumi = color.GetIntensityByte ();
			int diff = Curve[lumi] - lumi;

			return ColorBgra.FromBgraClamped (
			    color.B + diff,
			    color.G + diff,
			    color.R + diff,
			    color.A);
		}
開發者ID:PintaProject,項目名稱:Pinta.ImageManipulation,代碼行數:11,代碼來源:LuminosityCurveOp.cs

示例3: Apply

 public override ColorBgra Apply(ColorBgra lhs, ColorBgra rhs)
 {
     byte intensity = rhs.GetIntensityByte();
     ColorBgra result = ColorBgra.FromBgra(lhs.B, lhs.G, lhs.R, (byte)Utility.FastScaleByteByByte(intensity, lhs.A));
     return result;
 }
開發者ID:herbqiao,項目名稱:paint.net,代碼行數:6,代碼來源:PasteAction.cs

示例4: Apply

		public override ColorBgra Apply (ColorBgra color)
		{
			var i = color.GetIntensityByte ();
			return ColorBgra.FromBgra (i, i, i, color.A);
		}
開發者ID:PintaProject,項目名稱:Pinta.ImageManipulation,代碼行數:5,代碼來源:DesaturateOp.cs


注:本文中的ColorBgra.GetIntensityByte方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。