Пример #1
0
        public static void FillBackground(string imageSource)
        {
            /*
             * Fill the background with Image object.
             * If the Image object is not large enough to fill the background, it will be tiled.
             *
             */

            Image image = new Image(imageSource);

            imageBuffer = image.Get();

            RCore.FillArray(ref background, imageBuffer);
        }