mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-03-11 12:35:48 -04:00
Co-authored-by: Joseph Milazzo <joseph.v.milazzo@gmail.com> Co-authored-by: Joe Milazzo <josephmajora@gmail.com>
16 lines
438 B
C#
16 lines
438 B
C#
namespace Kavita.Models.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)
|
|
};
|
|
}
|
|
}
|