aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Drawing/IImageProcessor.cs
diff options
context:
space:
mode:
authorDavid <daullmer@gmail.com>2020-08-21 19:53:55 +0200
committerDavid <daullmer@gmail.com>2020-08-21 19:53:55 +0200
commita3020f2917176baef19653a485cc0aaaeb8d00f2 (patch)
tree7596a305eecc5a032d4fc10a175e58a9de3cae67 /MediaBrowser.Controller/Drawing/IImageProcessor.cs
parentcd49beb7add2ca2458b6a215bfcc258de1a68b91 (diff)
Use backdrop with library name as library thumbnail
Diffstat (limited to 'MediaBrowser.Controller/Drawing/IImageProcessor.cs')
-rw-r--r--MediaBrowser.Controller/Drawing/IImageProcessor.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Drawing/IImageProcessor.cs b/MediaBrowser.Controller/Drawing/IImageProcessor.cs
index 69d799165..80687c9d0 100644
--- a/MediaBrowser.Controller/Drawing/IImageProcessor.cs
+++ b/MediaBrowser.Controller/Drawing/IImageProcessor.cs
@@ -85,7 +85,8 @@ namespace MediaBrowser.Controller.Drawing
/// Creates the image collage.
/// </summary>
/// <param name="options">The options.</param>
- void CreateImageCollage(ImageCollageOptions options);
+ /// <param name="libraryName">The library name to draw onto the collage.</param>
+ void CreateImageCollage(ImageCollageOptions options, string? libraryName);
bool SupportsTransparency(string path);
}