Exemplo n.º 1
0
        /// <summary>
        /// Brightens the background image samples to reflect the source image samples.
        /// </summary>
        /// <returns>
        /// The composite Image
        /// </returns>
        public CIImage ColorDodgeBlendMode()
        {
            var colorDodgeBlend = new CIColorDodgeBlendMode()
            {
                Image           = heron,
                BackgroundImage = clouds,
            };

            return(colorDodgeBlend.OutputImage);
        }
Exemplo n.º 2
0
		/// <summary>
		/// Brightens the background image samples to reflect the source image samples.
		/// </summary>
		/// <returns>
		/// The composite Image
		/// </returns>
		public CIImage ColorDodgeBlendMode ()
		{
			var colorDodgeBlend = new CIColorDodgeBlendMode ()
			{
				Image = heron,
				BackgroundImage = clouds,
			};
			
			return colorDodgeBlend.OutputImage;
		}