IImageGenerator.cs 570 B

1234567891011121314151617
  1. namespace MediaBrowser.Controller.Drawing
  2. {
  3. public interface IImageGenerator
  4. {
  5. /// <summary>
  6. /// Gets the supported generated images of the image generator.
  7. /// </summary>
  8. /// <returns>The supported images.</returns>
  9. GeneratedImages[] GetSupportedImages();
  10. /// <summary>
  11. /// Generates a splashscreen.
  12. /// </summary>
  13. /// <param name="generationOptions">The options used to generate the splashscreen.</param>
  14. void GenerateSplashscreen(SplashscreenOptions generationOptions);
  15. }
  16. }