diff options
| author | Cody Robibero <cody@robibe.ro> | 2022-01-28 08:12:21 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-01-28 08:12:21 -0700 |
| commit | e5701c396a81a537a5934099d1e2d06e82b00c44 (patch) | |
| tree | 243d003bb074bfd6832adad96e27759dd3205fdd /MediaBrowser.Controller/Drawing/IImageEncoder.cs | |
| parent | 488ce510321ebcec36bccc45398feffe725cb5f0 (diff) | |
| parent | 8a36fe7ed51d1a1da7c629e10ff9eebf81cf9785 (diff) | |
Merge pull request #6436 from daullmer/splashscreen
Diffstat (limited to 'MediaBrowser.Controller/Drawing/IImageEncoder.cs')
| -rw-r--r-- | MediaBrowser.Controller/Drawing/IImageEncoder.cs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Drawing/IImageEncoder.cs b/MediaBrowser.Controller/Drawing/IImageEncoder.cs index 4e67cfee4..e5c8ebfaf 100644 --- a/MediaBrowser.Controller/Drawing/IImageEncoder.cs +++ b/MediaBrowser.Controller/Drawing/IImageEncoder.cs @@ -74,5 +74,12 @@ namespace MediaBrowser.Controller.Drawing /// <param name="options">The options to use when creating the collage.</param> /// <param name="libraryName">Optional. </param> void CreateImageCollage(ImageCollageOptions options, string? libraryName); + + /// <summary> + /// Creates a new splashscreen image. + /// </summary> + /// <param name="posters">The list of poster paths.</param> + /// <param name="backdrops">The list of backdrop paths.</param> + void CreateSplashscreen(IReadOnlyList<string> posters, IReadOnlyList<string> backdrops); } } |
