| | 1 | | using System; |
| | 2 | | using System.Collections.Generic; |
| | 3 | | using System.Globalization; |
| | 4 | | using System.IO; |
| | 5 | | using System.Text.RegularExpressions; |
| | 6 | | using SkiaSharp; |
| | 7 | | using SkiaSharp.HarfBuzz; |
| | 8 | |
|
| | 9 | | namespace Jellyfin.Drawing.Skia; |
| | 10 | |
|
| | 11 | | /// <summary> |
| | 12 | | /// Used to build collages of multiple images arranged in vertical strips. |
| | 13 | | /// </summary> |
| | 14 | | public partial class StripCollageBuilder |
| | 15 | | { |
| | 16 | | private readonly SkiaEncoder _skiaEncoder; |
| | 17 | |
|
| | 18 | | /// <summary> |
| | 19 | | /// Initializes a new instance of the <see cref="StripCollageBuilder"/> class. |
| | 20 | | /// </summary> |
| | 21 | | /// <param name="skiaEncoder">The encoder to use for building collages.</param> |
| | 22 | | public StripCollageBuilder(SkiaEncoder skiaEncoder) |
| | 23 | | { |
| 0 | 24 | | _skiaEncoder = skiaEncoder; |
| 0 | 25 | | } |
| | 26 | |
|
| | 27 | | [GeneratedRegex(@"\p{IsArabic}|\p{IsArmenian}|\p{IsHebrew}|\p{IsSyriac}|\p{IsThaana}")] |
| | 28 | | private static partial Regex IsRtlTextRegex(); |
| | 29 | |
|
| | 30 | | /// <summary> |
| | 31 | | /// Check which format an image has been encoded with using its filename extension. |
| | 32 | | /// </summary> |
| | 33 | | /// <param name="outputPath">The path to the image to get the format for.</param> |
| | 34 | | /// <returns>The image format.</returns> |
| | 35 | | public static SKEncodedImageFormat GetEncodedFormat(string outputPath) |
| | 36 | | { |
| 0 | 37 | | ArgumentNullException.ThrowIfNull(outputPath); |
| | 38 | |
|
| 0 | 39 | | var ext = Path.GetExtension(outputPath.AsSpan()); |
| | 40 | |
|
| 0 | 41 | | if (ext.Equals(".jpg", StringComparison.OrdinalIgnoreCase) |
| 0 | 42 | | || ext.Equals(".jpeg", StringComparison.OrdinalIgnoreCase)) |
| | 43 | | { |
| 0 | 44 | | return SKEncodedImageFormat.Jpeg; |
| | 45 | | } |
| | 46 | |
|
| 0 | 47 | | if (ext.Equals(".webp", StringComparison.OrdinalIgnoreCase)) |
| | 48 | | { |
| 0 | 49 | | return SKEncodedImageFormat.Webp; |
| | 50 | | } |
| | 51 | |
|
| 0 | 52 | | if (ext.Equals(".gif", StringComparison.OrdinalIgnoreCase)) |
| | 53 | | { |
| 0 | 54 | | return SKEncodedImageFormat.Gif; |
| | 55 | | } |
| | 56 | |
|
| 0 | 57 | | if (ext.Equals(".bmp", StringComparison.OrdinalIgnoreCase)) |
| | 58 | | { |
| 0 | 59 | | return SKEncodedImageFormat.Bmp; |
| | 60 | | } |
| | 61 | |
|
| | 62 | | // default to png |
| 0 | 63 | | return SKEncodedImageFormat.Png; |
| | 64 | | } |
| | 65 | |
|
| | 66 | | /// <summary> |
| | 67 | | /// Create a square collage. |
| | 68 | | /// </summary> |
| | 69 | | /// <param name="paths">The paths of the images to use in the collage.</param> |
| | 70 | | /// <param name="outputPath">The path at which to place the resulting collage image.</param> |
| | 71 | | /// <param name="width">The desired width of the collage.</param> |
| | 72 | | /// <param name="height">The desired height of the collage.</param> |
| | 73 | | public void BuildSquareCollage(IReadOnlyList<string> paths, string outputPath, int width, int height) |
| | 74 | | { |
| 0 | 75 | | using var bitmap = BuildSquareCollageBitmap(paths, width, height); |
| 0 | 76 | | using var outputStream = new SKFileWStream(outputPath); |
| 0 | 77 | | using var pixmap = new SKPixmap(new SKImageInfo(width, height), bitmap.GetPixels()); |
| 0 | 78 | | pixmap.Encode(outputStream, GetEncodedFormat(outputPath), 90); |
| 0 | 79 | | } |
| | 80 | |
|
| | 81 | | /// <summary> |
| | 82 | | /// Create a thumb collage. |
| | 83 | | /// </summary> |
| | 84 | | /// <param name="paths">The paths of the images to use in the collage.</param> |
| | 85 | | /// <param name="outputPath">The path at which to place the resulting image.</param> |
| | 86 | | /// <param name="width">The desired width of the collage.</param> |
| | 87 | | /// <param name="height">The desired height of the collage.</param> |
| | 88 | | /// <param name="libraryName">The name of the library to draw on the collage.</param> |
| | 89 | | public void BuildThumbCollage(IReadOnlyList<string> paths, string outputPath, int width, int height, string? library |
| | 90 | | { |
| 0 | 91 | | using var bitmap = BuildThumbCollageBitmap(paths, width, height, libraryName); |
| 0 | 92 | | using var outputStream = new SKFileWStream(outputPath); |
| 0 | 93 | | using var pixmap = new SKPixmap(new SKImageInfo(width, height), bitmap.GetPixels()); |
| 0 | 94 | | pixmap.Encode(outputStream, GetEncodedFormat(outputPath), 90); |
| 0 | 95 | | } |
| | 96 | |
|
| | 97 | | private SKBitmap BuildThumbCollageBitmap(IReadOnlyList<string> paths, int width, int height, string? libraryName) |
| | 98 | | { |
| 0 | 99 | | var bitmap = new SKBitmap(width, height); |
| | 100 | |
|
| 0 | 101 | | using var canvas = new SKCanvas(bitmap); |
| 0 | 102 | | canvas.Clear(SKColors.Black); |
| | 103 | |
|
| 0 | 104 | | using var backdrop = SkiaHelper.GetNextValidImage(_skiaEncoder, paths, 0, out _); |
| 0 | 105 | | if (backdrop is null) |
| | 106 | | { |
| 0 | 107 | | return bitmap; |
| | 108 | | } |
| | 109 | |
|
| | 110 | | // resize to the same aspect as the original |
| 0 | 111 | | var backdropHeight = Math.Abs(width * backdrop.Height / backdrop.Width); |
| 0 | 112 | | using var resizedBackdrop = SkiaEncoder.ResizeImage(backdrop, new SKImageInfo(width, backdropHeight, backdrop.Co |
| 0 | 113 | | using var paint = new SKPaint(); |
| 0 | 114 | | paint.FilterQuality = SKFilterQuality.High; |
| | 115 | | // draw the backdrop |
| 0 | 116 | | canvas.DrawImage(resizedBackdrop, 0, 0, paint); |
| | 117 | |
|
| | 118 | | // draw shadow rectangle |
| 0 | 119 | | using var paintColor = new SKPaint |
| 0 | 120 | | { |
| 0 | 121 | | Color = SKColors.Black.WithAlpha(0x78), |
| 0 | 122 | | Style = SKPaintStyle.Fill, |
| 0 | 123 | | FilterQuality = SKFilterQuality.High |
| 0 | 124 | | }; |
| 0 | 125 | | canvas.DrawRect(0, 0, width, height, paintColor); |
| | 126 | |
|
| 0 | 127 | | var typeFace = SkiaEncoder.DefaultTypeFace; |
| | 128 | |
|
| | 129 | | // draw library name |
| 0 | 130 | | using var textPaint = new SKPaint |
| 0 | 131 | | { |
| 0 | 132 | | Color = SKColors.White, |
| 0 | 133 | | Style = SKPaintStyle.Fill, |
| 0 | 134 | | TextSize = 112, |
| 0 | 135 | | TextAlign = SKTextAlign.Left, |
| 0 | 136 | | Typeface = typeFace, |
| 0 | 137 | | IsAntialias = true, |
| 0 | 138 | | FilterQuality = SKFilterQuality.High |
| 0 | 139 | | }; |
| | 140 | |
|
| | 141 | | // scale down text to 90% of the width if text is larger than 95% of the width |
| 0 | 142 | | var textWidth = textPaint.MeasureText(libraryName); |
| 0 | 143 | | if (textWidth > width * 0.95) |
| | 144 | | { |
| 0 | 145 | | textPaint.TextSize = 0.9f * width * textPaint.TextSize / textWidth; |
| | 146 | | } |
| | 147 | |
|
| 0 | 148 | | if (string.IsNullOrWhiteSpace(libraryName)) |
| | 149 | | { |
| 0 | 150 | | return bitmap; |
| | 151 | | } |
| | 152 | |
|
| 0 | 153 | | var realWidth = DrawText(null, 0, (height / 2f) + (textPaint.FontMetrics.XHeight / 2), libraryName, textPaint); |
| 0 | 154 | | if (realWidth > width * 0.95) |
| | 155 | | { |
| 0 | 156 | | textPaint.TextSize = 0.9f * width * textPaint.TextSize / realWidth; |
| 0 | 157 | | realWidth = DrawText(null, 0, (height / 2f) + (textPaint.FontMetrics.XHeight / 2), libraryName, textPaint); |
| | 158 | | } |
| | 159 | |
|
| 0 | 160 | | var padding = (width - realWidth) / 2; |
| | 161 | |
|
| 0 | 162 | | if (IsRtlTextRegex().IsMatch(libraryName)) |
| | 163 | | { |
| 0 | 164 | | textPaint.TextAlign = SKTextAlign.Right; |
| 0 | 165 | | DrawText(canvas, width - padding, (height / 2f) + (textPaint.FontMetrics.XHeight / 2), libraryName, textPain |
| | 166 | | } |
| | 167 | | else |
| | 168 | | { |
| 0 | 169 | | DrawText(canvas, padding, (height / 2f) + (textPaint.FontMetrics.XHeight / 2), libraryName, textPaint); |
| | 170 | | } |
| | 171 | |
|
| 0 | 172 | | return bitmap; |
| 0 | 173 | | } |
| | 174 | |
|
| | 175 | | private SKBitmap BuildSquareCollageBitmap(IReadOnlyList<string> paths, int width, int height) |
| | 176 | | { |
| 0 | 177 | | var bitmap = new SKBitmap(width, height); |
| 0 | 178 | | var imageIndex = 0; |
| 0 | 179 | | var cellWidth = width / 2; |
| 0 | 180 | | var cellHeight = height / 2; |
| | 181 | |
|
| 0 | 182 | | using var canvas = new SKCanvas(bitmap); |
| 0 | 183 | | for (var x = 0; x < 2; x++) |
| | 184 | | { |
| 0 | 185 | | for (var y = 0; y < 2; y++) |
| | 186 | | { |
| 0 | 187 | | using var currentBitmap = SkiaHelper.GetNextValidImage(_skiaEncoder, paths, imageIndex, out int newIndex |
| 0 | 188 | | imageIndex = newIndex; |
| | 189 | |
|
| 0 | 190 | | if (currentBitmap is null) |
| | 191 | | { |
| 0 | 192 | | continue; |
| | 193 | | } |
| | 194 | |
|
| | 195 | | // Scale image |
| 0 | 196 | | var imageInfo = new SKImageInfo(cellWidth, cellHeight, currentBitmap.ColorType, currentBitmap.AlphaType, |
| 0 | 197 | | using var resizeImage = SkiaEncoder.ResizeImage(currentBitmap, imageInfo); |
| 0 | 198 | | using var paint = new SKPaint(); |
| 0 | 199 | | paint.FilterQuality = SKFilterQuality.High; |
| | 200 | |
|
| | 201 | | // draw this image into the strip at the next position |
| 0 | 202 | | var xPos = x * cellWidth; |
| 0 | 203 | | var yPos = y * cellHeight; |
| 0 | 204 | | canvas.DrawImage(resizeImage, xPos, yPos, paint); |
| | 205 | | } |
| | 206 | | } |
| | 207 | |
|
| 0 | 208 | | return bitmap; |
| 0 | 209 | | } |
| | 210 | |
|
| | 211 | | /// <summary> |
| | 212 | | /// Draw shaped text with given SKPaint. |
| | 213 | | /// </summary> |
| | 214 | | /// <param name="canvas">If not null, draw text to this canvas, otherwise only measure the text width.</param> |
| | 215 | | /// <param name="x">x position of the canvas to draw text.</param> |
| | 216 | | /// <param name="y">y position of the canvas to draw text.</param> |
| | 217 | | /// <param name="text">The text to draw.</param> |
| | 218 | | /// <param name="textPaint">The SKPaint to style the text.</param> |
| | 219 | | /// <returns>The width of the text.</returns> |
| | 220 | | private static float MeasureAndDrawText(SKCanvas? canvas, float x, float y, string text, SKPaint textPaint) |
| | 221 | | { |
| 0 | 222 | | var width = textPaint.MeasureText(text); |
| 0 | 223 | | canvas?.DrawShapedText(text, x, y, textPaint); |
| 0 | 224 | | return width; |
| | 225 | | } |
| | 226 | |
|
| | 227 | | /// <summary> |
| | 228 | | /// Draw shaped text with given SKPaint, search defined type faces to render as many texts as possible. |
| | 229 | | /// </summary> |
| | 230 | | /// <param name="canvas">If not null, draw text to this canvas, otherwise only measure the text width.</param> |
| | 231 | | /// <param name="x">x position of the canvas to draw text.</param> |
| | 232 | | /// <param name="y">y position of the canvas to draw text.</param> |
| | 233 | | /// <param name="text">The text to draw.</param> |
| | 234 | | /// <param name="textPaint">The SKPaint to style the text.</param> |
| | 235 | | /// <param name="isRtl">If true, render from right to left.</param> |
| | 236 | | /// <returns>The width of the text.</returns> |
| | 237 | | private static float DrawText(SKCanvas? canvas, float x, float y, string text, SKPaint textPaint, bool isRtl = false |
| | 238 | | { |
| 0 | 239 | | float width = 0; |
| | 240 | |
|
| 0 | 241 | | if (textPaint.ContainsGlyphs(text)) |
| | 242 | | { |
| | 243 | | // Current font can render all characters in text |
| 0 | 244 | | return MeasureAndDrawText(canvas, x, y, text, textPaint); |
| | 245 | | } |
| | 246 | |
|
| | 247 | | // Iterate over all text elements using TextElementEnumerator |
| | 248 | | // We cannot use foreach here because a human-readable character (grapheme cluster) can be multiple code points |
| | 249 | | // We cannot render character by character because glyphs do not always have same width |
| | 250 | | // And the result will look very unnatural due to the width difference and missing natural spacing |
| 0 | 251 | | var start = 0; |
| 0 | 252 | | var enumerator = StringInfo.GetTextElementEnumerator(text); |
| 0 | 253 | | while (enumerator.MoveNext()) |
| | 254 | | { |
| | 255 | | bool notAtEnd; |
| 0 | 256 | | var textElement = enumerator.GetTextElement(); |
| 0 | 257 | | if (textPaint.ContainsGlyphs(textElement)) |
| | 258 | | { |
| | 259 | | continue; |
| | 260 | | } |
| | 261 | |
|
| | 262 | | // If we get here, we have a text element which cannot be rendered with current font |
| | 263 | | // Draw previous characters which can be rendered with current font |
| 0 | 264 | | if (start != enumerator.ElementIndex) |
| | 265 | | { |
| 0 | 266 | | var regularText = text.Substring(start, enumerator.ElementIndex - start); |
| 0 | 267 | | width += MeasureAndDrawText(canvas, MoveX(x, width), y, regularText, textPaint); |
| 0 | 268 | | start = enumerator.ElementIndex; |
| | 269 | | } |
| | 270 | |
|
| | 271 | | // Search for next point where current font can render the character there |
| 0 | 272 | | while ((notAtEnd = enumerator.MoveNext()) && !textPaint.ContainsGlyphs(enumerator.GetTextElement())) |
| | 273 | | { |
| | 274 | | // Do nothing, just move enumerator to the point where current font can render the character |
| | 275 | | } |
| | 276 | |
|
| | 277 | | // Now we have a substring that should pick another font |
| | 278 | | // The enumerator may or may not be already at the end of the string |
| 0 | 279 | | var subtext = notAtEnd |
| 0 | 280 | | ? text.Substring(start, enumerator.ElementIndex - start) |
| 0 | 281 | | : text[start..]; |
| | 282 | |
|
| 0 | 283 | | var fallback = SkiaEncoder.GetFontForCharacter(textElement); |
| | 284 | |
|
| 0 | 285 | | if (fallback is not null) |
| | 286 | | { |
| 0 | 287 | | using var fallbackTextPaint = new SKPaint(); |
| 0 | 288 | | fallbackTextPaint.Color = textPaint.Color; |
| 0 | 289 | | fallbackTextPaint.Style = textPaint.Style; |
| 0 | 290 | | fallbackTextPaint.TextSize = textPaint.TextSize; |
| 0 | 291 | | fallbackTextPaint.TextAlign = textPaint.TextAlign; |
| 0 | 292 | | fallbackTextPaint.Typeface = fallback; |
| 0 | 293 | | fallbackTextPaint.IsAntialias = textPaint.IsAntialias; |
| | 294 | |
|
| | 295 | | // Do the search recursively to select all possible fonts |
| 0 | 296 | | width += DrawText(canvas, MoveX(x, width), y, subtext, fallbackTextPaint, isRtl); |
| | 297 | | } |
| | 298 | | else |
| | 299 | | { |
| | 300 | | // Used up all fonts and no fonts can be found, just use current font |
| 0 | 301 | | width += MeasureAndDrawText(canvas, MoveX(x, width), y, text[start..], textPaint); |
| | 302 | | } |
| | 303 | |
|
| 0 | 304 | | start = notAtEnd ? enumerator.ElementIndex : text.Length; |
| | 305 | | } |
| | 306 | |
|
| | 307 | | // Render the remaining text that current fonts can render |
| 0 | 308 | | if (start < text.Length) |
| | 309 | | { |
| 0 | 310 | | width += MeasureAndDrawText(canvas, MoveX(x, width), y, text[start..], textPaint); |
| | 311 | | } |
| | 312 | |
|
| 0 | 313 | | return width; |
| | 314 | | float MoveX(float currentX, float dWidth) => isRtl ? currentX - dWidth : currentX + dWidth; |
| | 315 | | } |
| | 316 | | } |