mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-03-11 20:42:53 -04:00
Co-authored-by: Joseph Milazzo <joseph.v.milazzo@gmail.com> Co-authored-by: Joe Milazzo <josephmajora@gmail.com>
18 lines
311 B
C#
18 lines
311 B
C#
namespace Kavita.Models.Entities.Enums;
|
|
|
|
public enum PdfRenderResolution
|
|
{
|
|
/// <summary>
|
|
/// Default Size: 1080x1920 (wxh)
|
|
/// </summary>
|
|
Default = 1,
|
|
/// <summary>
|
|
/// 1920x2560
|
|
/// </summary>
|
|
High = 2,
|
|
/// <summary>
|
|
/// 2160x3840
|
|
/// </summary>
|
|
Ultra = 3,
|
|
}
|