mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-01-04 05:44:03 +01:00
17 lines
545 B
C#
17 lines
545 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="outputPath">The path where the splashscreen should be saved.</param>
|
|
void GenerateSplashscreen(string outputPath);
|
|
}
|
|
}
|