public static void Resize(Photo photo)
 {
     Console.WriteLine("Resize photo");
 }
 public static void ApplyBrightness(Photo photo)
 {
     Console.WriteLine("Apply brightness");
 }
 public static void ApplyContrast(Photo photo)
 {
     Console.WriteLine("Apply contrast");
 }
Exemple #4
0
 public void ApplyBrightness(Photo photo)
 {
     Console.WriteLine("Brightness applied to photo");
 }
Exemple #5
0
 public void ApplySharp(Photo photo)
 {
     Console.WriteLine("Sharpness applied to photo");
 }
Exemple #6
0
 public void ApplyContrast(Photo photo)
 {
     Console.WriteLine("Contrast applied to photo");
 }
Exemple #7
0
 static void RemoveRedEyeFilter(Photo photo)
 {
     Console.WriteLine("Remove red eye filter applied");
 }