コード例 #1
0
        public static bool ScaleColors(Image image, float red, float green, float blue)
        {
            if (image == null || !image.IsValid)
            {
                return(false);
            }

            IL.BindImage(image.ImageID);
            return(ILU.ScaleColors(red, green, blue));
        }