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.cs22
1 files changed, 0 insertions, 22 deletions
diff --git a/MediaBrowser.Controller/Drawing/IImageGenerator.cs b/MediaBrowser.Controller/Drawing/IImageGenerator.cs
deleted file mode 100644
index 773db02cb..000000000
--- a/MediaBrowser.Controller/Drawing/IImageGenerator.cs
+++ /dev/null
@@ -1,22 +0,0 @@
-using System.Collections.Generic;
-
-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 generated image types.</returns>
- IReadOnlyList<GeneratedImageType> GetSupportedImages();
-
- /// <summary>
- /// Generates a splashscreen.
- /// </summary>
- /// <param name="imageTypeType">The image to generate.</param>
- /// <param name="outputPath">The path where the splashscreen should be saved.</param>
- void Generate(GeneratedImageType imageTypeType, string outputPath);
-}