mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-28 03:34:46 +03:00
18 lines
570 B
C#
18 lines
570 B
C#
namespace MediaBrowser.Controller.Drawing
|
|
{
|
|
public interface IImageGenerator
|
|
{
|
|
/// <summary>
|
|
/// Gets the supported generated images of the image generator.
|
|
/// </summary>
|
|
/// <returns>The supported images.</returns>
|
|
GeneratedImages[] GetSupportedImages();
|
|
|
|
/// <summary>
|
|
/// Generates a splashscreen.
|
|
/// </summary>
|
|
/// <param name="generationOptions">The options used to generate the splashscreen.</param>
|
|
void GenerateSplashscreen(SplashscreenOptions generationOptions);
|
|
}
|
|
}
|