jellyfin/Jellyfin.Drawing.Skia/SkiaHelper.cs

48 lines
1.5 KiB
C#
Raw Normal View History

2021-08-15 14:32:08 -04:00
using System.Collections.Generic;
2019-09-15 00:27:42 -04:00
using SkiaSharp;
namespace Jellyfin.Drawing.Skia
{
/// <summary>
/// Class containing helper methods for working with SkiaSharp.
/// </summary>
public static class SkiaHelper
{
2021-08-15 14:32:08 -04:00
/// <summary>
/// Gets the next valid image as a bitmap.
/// </summary>
/// <param name="skiaEncoder">The current skia encoder.</param>
/// <param name="paths">The list of image paths.</param>
/// <param name="currentIndex">The current checked index.</param>
2021-08-15 14:32:08 -04:00
/// <param name="newIndex">The new index.</param>
/// <returns>A valid bitmap, or null if no bitmap exists after <c>currentIndex</c>.</returns>
public static SKBitmap? GetNextValidImage(SkiaEncoder skiaEncoder, IReadOnlyList<string> paths, int currentIndex, out int newIndex)
{
var imagesTested = new Dictionary<int, int>();
SKBitmap? bitmap = null;
while (imagesTested.Count < paths.Count)
{
if (currentIndex >= paths.Count)
{
currentIndex = 0;
}
bitmap = skiaEncoder.Decode(paths[currentIndex], false, null, out _);
imagesTested[currentIndex] = 0;
currentIndex++;
2022-12-05 09:01:13 -05:00
if (bitmap is not null)
2021-08-15 14:32:08 -04:00
{
break;
}
}
newIndex = currentIndex;
return bitmap;
}
2019-09-15 00:27:42 -04:00
}
}