namespace MediaBrowser.Controller.Drawing { public interface IImageGenerator { /// /// Gets the supported generated images of the image generator. /// /// The supported images. GeneratedImages[] GetSupportedImages(); /// /// Generates a splashscreen. /// /// The options used to generate the splashscreen. void GenerateSplashscreen(SplashscreenOptions generationOptions); } }