mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-27 11:14:47 +03:00
21 lines
624 B
C#
21 lines
624 B
C#
namespace MediaBrowser.Controller.Drawing
|
|
{
|
|
/// <summary>
|
|
/// Interface for an image generator.
|
|
/// </summary>
|
|
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="outputPath">The path where the splashscreen should be saved.</param>
|
|
void GenerateSplashscreen(string outputPath);
|
|
}
|
|
}
|