Esempio n. 1
0
        // Change the image with hardnoise filter applied
        public void doHardNoise(Stream stream, WriteableBitmap bitmap, RemedyImage givenImage)
        {
            rootPage.prepareImage(stream, bitmap, givenImage);

            givenImage.Noise(1);
            rootPage.setStream(stream, bitmap, givenImage);
        }
Esempio n. 2
0
        // Change the image with noise filter applied
        public void doNoise(Stream stream, WriteableBitmap bitmap, RemedyImage givenImage)
        {
            rootPage.prepareImage(stream, bitmap, givenImage);

            givenImage.Noise(givenImage.Noise_GetSquareWidth(20));
            rootPage.setStream(stream, bitmap, givenImage);
        }