mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-01-17 01:20:22 -05:00
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>
18 lines
301 B
C#
18 lines
301 B
C#
namespace API.Entities.Enums;
|
|
|
|
public enum PdfRenderResolution
|
|
{
|
|
/// <summary>
|
|
/// Default Size: 1080x1920 (wxh)
|
|
/// </summary>
|
|
Default = 1,
|
|
/// <summary>
|
|
/// 1920x2560
|
|
/// </summary>
|
|
High = 2,
|
|
/// <summary>
|
|
/// 2160x3840
|
|
/// </summary>
|
|
Ultra = 3,
|
|
}
|