Files
jellyfin-jellyfin-1/MediaBrowser.Controller/Drawing/IImageGenerator.cs
2022-01-04 08:20:16 -07:00

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);
}
}