Ejemplo n.º 1
0
 public static Bitmap Jitter(Bitmap bmp, int value)
 {
     // create filter
     Jitter filter = new Jitter(value);
     // apply the filter
     filter.ApplyInPlace(bmp);
     return bmp;
 }
Ejemplo n.º 2
0
 private Bitmap AddJitterEffect(ref Bitmap sourceBitmap)
 {
     Jitter jitter = new Jitter(this.jitterParam);
     jitter.ApplyInPlace(sourceBitmap);
     return sourceBitmap;
 }