Kavita/API/Entities/Enums/PdfRenderResolutionExtensions.cs
Joe Milazzo 6d1c7a4ff5
Last of the Year - Page Offset, Device-bound Reading Profiles, and more! (#4313)
Co-authored-by: Amelia <77553571+Fesaa@users.noreply.github.com>
Co-authored-by: DieselTech <30128380+DieselTech@users.noreply.github.com>
Co-authored-by: Alex George <xzeroknightx@gmail.com>
Co-authored-by: Lucas Winther <lucasw89@live.dk>
Co-authored-by: Toni Kielo <toni.kielo@gmail.com>
Co-authored-by: Patrick Orave <oravep@gmail.com>
2025-12-31 11:01:55 -08:00

16 lines
428 B
C#

namespace API.Entities.Enums;
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)
};
}
}