Exemplo n.º 1
0
        public static bool EnlargeCanvas(Image image, int width, int height, int depth)
        {
            if (image == null || !image.IsValid)
            {
                return(false);
            }

            IL.BindImage(image.ImageID);
            return(ILU.EnlargeCanvas(width, height, depth));
        }