/
tsv-dd
/
DocumentFlow
Обзор
Документация
Войти
/
tsv-dd
/
DocumentFlow
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
ksen
DocumentFlow.Ghostscript/GhostscriptSettings.cs
28 строк
839 B
Тепляшин Сергей
Версия 2023.9.25
25 сен 2023, 17:00
25 сен 2023, 17:00
d85f975
Код
Авторство
О чём код?
//----------------------------------------------------------------------- // Copyright © 2010-2023 Тепляшин Сергей Васильевич. // Contacts: <sergio.teplyashin@yandex.ru> // License: https://opensource.org/licenses/GPL-3.0 // Git: https://github.com/mephraim/ghostscriptsharp // Date: 24.09.2023 //----------------------------------------------------------------------- using DocumentFlow.Ghostscript.Enums; using DocumentFlow.Ghostscript.Settings; using System.Drawing; namespace DocumentFlow.Ghostscript; /// <summary> /// Ghostscript settings /// </summary> public class GhostscriptSettings { public GhostscriptDevices Device { get; set; } public GhostscriptPages Page { get; set; } = new(); public Size Resolution { get; set; } public GhostscriptPageSize Size { get; set; } = new(); }