mirror of
https://github.com/JakubMelka/PDF4QT.git
synced 2025-06-05 21:59:17 +02:00
Color adaptation (just settings), options dialog adjustments
This commit is contained in:
@ -55,12 +55,22 @@ struct PDFCMSSettings
|
||||
High
|
||||
};
|
||||
|
||||
enum class ColorAdaptationXYZ
|
||||
{
|
||||
None,
|
||||
XYZScaling,
|
||||
CAT97,
|
||||
CAT02,
|
||||
Bradford
|
||||
};
|
||||
|
||||
bool operator==(const PDFCMSSettings&) const = default;
|
||||
|
||||
System system = System::Generic;
|
||||
Accuracy accuracy = Accuracy::Medium;
|
||||
RenderingIntent intent = RenderingIntent::Auto;
|
||||
RenderingIntent proofingIntent = RenderingIntent::RelativeColorimetric;
|
||||
ColorAdaptationXYZ colorAdaptationXYZ = ColorAdaptationXYZ::Bradford;
|
||||
bool isBlackPointCompensationActive = true;
|
||||
bool isWhitePaperColorTransformed = false;
|
||||
bool isGamutChecking = false;
|
||||
|
Reference in New Issue
Block a user