aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Drawing/IImageGenerator.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Controller/Drawing/IImageGenerator.cs')
-rw-r--r--MediaBrowser.Controller/Drawing/IImageGenerator.cs17
1 files changed, 17 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Drawing/IImageGenerator.cs b/MediaBrowser.Controller/Drawing/IImageGenerator.cs
new file mode 100644
index 000000000..21699c3f0
--- /dev/null
+++ b/MediaBrowser.Controller/Drawing/IImageGenerator.cs
@@ -0,0 +1,17 @@
+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);
+ }
+}