mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-04-02 07:14:30 -04:00
18 lines
471 B
C#
18 lines
471 B
C#
using Kavita.Models.Entities.Enums;
|
|
|
|
namespace Kavita.Models.Extensions;
|
|
|
|
public static class PdfRenderResolutionExtensions
|
|
{
|
|
public static (int dim1, int dim2) GetDimensions(this PdfRenderResolution size)
|
|
{
|
|
return size switch
|
|
{
|
|
PdfRenderResolution.Default => (1080, 1920),
|
|
PdfRenderResolution.High => (1920, 2560),
|
|
PdfRenderResolution.Ultra => (2160, 3840),
|
|
_ => (1080, 1920)
|
|
};
|
|
}
|
|
}
|