예제 #1
0
        public static bool Rotate(Image image, float angle)
        {
            if (image == null || !image.IsValid)
            {
                return(false);
            }

            IL.BindImage(image.ImageID);
            return(ILU.Rotate(angle));
        }