namespace MediaBrowser.Controller.Drawing
{
///
/// Interface for an image generator.
///
public interface IImageGenerator
{
///
/// Gets the supported generated images of the image generator.
///
/// The supported images.
GeneratedImages[] GetSupportedImages();
///
/// Generates a splashscreen.
///
/// The path where the splashscreen should be saved.
void GenerateSplashscreen(string outputPath);
}
}