Home
last modified time | relevance | path

Searched refs:RenderingIntent (Results 1 – 25 of 459) sorted by relevance

12345678910>>...19

/dports/graphics/lightzone/LightZone-4.1.8-3-g36e87773/lightcrafts/src/com/lightcrafts/model/
H A DRenderingIntent.java8 public final class RenderingIntent { class
11 new RenderingIntent( "Absolute Colorimetric" );
13 public static final RenderingIntent PERCEPTUAL =
14 new RenderingIntent( "Perceptual" );
22 public static final RenderingIntent SATURATION =
23 new RenderingIntent( "Saturation" );
26 if ( !(o instanceof RenderingIntent) ) in equals()
28 final RenderingIntent r = (RenderingIntent)o; in equals()
32 public static RenderingIntent[] getAll() { in getAll()
33 return new RenderingIntent[] { in getAll()
[all …]
H A DPrintSettings.java24 private RenderingIntent intent;
35 setRenderingIntent(RenderingIntent.PERCEPTUAL); in PrintSettings()
47 public RenderingIntent getRenderingIntent() { in getRenderingIntent()
51 public void setRenderingIntent(RenderingIntent intent) { in setRenderingIntent()
/dports/graphics/lightzone/LightZone-4.1.8-3-g36e87773/lightcrafts/src/com/lightcrafts/jai/operator/
H A DLCMSColorConvertDescriptor.java88 public static final class RenderingIntent extends EnumeratedParameter { class in LCMSColorConvertDescriptor
89 RenderingIntent(String name, int value) { in RenderingIntent() method in LCMSColorConvertDescriptor.RenderingIntent
94 …public static final RenderingIntent PERCEPTUAL = new RenderingIntent("PERCEPTUAL", LCMS.INTENT_PER…
95 …public static final RenderingIntent SATURATION = new RenderingIntent("SATURATION", LCMS.INTENT_SAT…
96 …public static final RenderingIntent RELATIVE_COLORIMETRIC = new RenderingIntent("RELATIVE_COLORIME…
97 …public static final RenderingIntent RELATIVE_COLORIMETRIC_BP = new RenderingIntent("RELATIVE_COLOR…
98 …public static final RenderingIntent ABSOLUTE_COLORIMETRIC = new RenderingIntent("ABSOLUTE_COLORIME…
119 RenderingIntent.class,
121 RenderingIntent.class
171 RenderingIntent renderingIntent, in create()
[all …]
H A DLCColorConvertDescriptor.java86 public static final class RenderingIntent extends EnumeratedParameter { class in LCColorConvertDescriptor
87 RenderingIntent(String name, int value) { in RenderingIntent() method in LCColorConvertDescriptor.RenderingIntent
92 public static final RenderingIntent DEFAULT = new RenderingIntent("DEFAULT", -1);
93 …public static final RenderingIntent PERCEPTUAL = new RenderingIntent("PERCEPTUAL", ICC_Profile.icP…
94 …public static final RenderingIntent SATURATION = new RenderingIntent("SATURATION", ICC_Profile.icS…
95 …public static final RenderingIntent RELATIVE_COLORIMETRIC = new RenderingIntent("RELATIVE_COLORIME…
96 …public static final RenderingIntent ABSOLUTE_COLORIMETRIC = new RenderingIntent("ABSOLUTE_COLORIME…
117 RenderingIntent.class
163 RenderingIntent renderingIntent, in create()
198 RenderingIntent renderingIntent, in createRenderable()
/dports/graphics/mupdf/mupdf-1.18.0-source/platform/java/src/com/artifex/mupdf/fitz/
H A DColorParams.java5 public enum RenderingIntent { enum in ColorParams
15 public static RenderingIntent RI(int flags) { in RI()
18 case 0: return RenderingIntent.PERCEPTUAL; in RI()
19 case 1: return RenderingIntent.RELATIVE_COLORIMETRIC; in RI()
20 case 2: return RenderingIntent.SATURATION; in RI()
21 case 3: return RenderingIntent.ABSOLUTE_COLORIMETRIC; in RI()
37 public static int pack(RenderingIntent ri, boolean bp, boolean op, boolean opm) { in pack()
/dports/graphics/lightzone/LightZone-4.1.8-3-g36e87773/lightcrafts/src/com/lightcrafts/ui/export/
H A DExportControls.java14 import com.lightcrafts.model.RenderingIntent;
282 RenderingIntent[] intents = RenderingIntent.getAll(); in addRenderingIntentControl()
283 for (RenderingIntent intent : intents) { in addRenderingIntentControl()
297 RenderingIntent intent = in addRenderingIntentControl()
370 if (intent == RenderingIntent.ABSOLUTE_COLORIMETRIC) { in convertRenderingIntentToInt()
373 if (intent == RenderingIntent.PERCEPTUAL) { in convertRenderingIntentToInt()
382 if (intent == RenderingIntent.SATURATION) { in convertRenderingIntentToInt()
399 RenderingIntent intent; in convertIntToRenderingIntent()
405 intent = RenderingIntent.PERCEPTUAL; in convertIntToRenderingIntent()
416 intent = RenderingIntent.SATURATION; in convertIntToRenderingIntent()
[all …]
/dports/graphics/digikam/digikam-7.4.0/core/libs/dimg/filters/icc/
H A Dicctransform.h52 enum RenderingIntent enum
114 void setIntent(RenderingIntent intent);
117 setIntent((RenderingIntent)intent); in setIntent()
120 void setProofIntent(RenderingIntent intent);
123 setProofIntent((RenderingIntent)intent); in setProofIntent()
138 RenderingIntent intent() const;
139 RenderingIntent proofIntent() const;
H A Dicctransform.cpp194 IccTransform::RenderingIntent intent;
195 IccTransform::RenderingIntent proofIntent;
310 void IccTransform::setIntent(RenderingIntent intent) in setIntent()
321 void IccTransform::setProofIntent(RenderingIntent intent) in setProofIntent()
359 IccTransform::RenderingIntent IccTransform::intent() const in intent()
364 IccTransform::RenderingIntent IccTransform::proofIntent() const in proofIntent()
413 static int renderingIntentToLcmsIntent(IccTransform::RenderingIntent intent) in renderingIntentToLcmsIntent()
/dports/graphics/lightzone/LightZone-4.1.8-3-g36e87773/lightcrafts/src/com/lightcrafts/ui/print/
H A DColorManagementPanel.java5 import com.lightcrafts.model.RenderingIntent;
155 RenderingIntent[] intents = RenderingIntent.getAll(); in addRenderingIntent()
156 for (RenderingIntent intent : intents) { in addRenderingIntent()
159 RenderingIntent intent = model.getRenderingIntent(); in addRenderingIntent()
169 RenderingIntent intent = in addRenderingIntent()
170 (RenderingIntent) renderingIntent.getSelectedItem(); in addRenderingIntent()
H A DPrintLayoutModel.java6 import com.lightcrafts.model.RenderingIntent;
66 private RenderingIntent intent;
84 intent = RenderingIntent.PERCEPTUAL; in PrintLayoutModel()
100 public RenderingIntent getRenderingIntent() { in getRenderingIntent()
104 public void setRenderingIntent(RenderingIntent intent) { in setRenderingIntent()
365 RenderingIntent[] intents = RenderingIntent.getAll(); in restore()
367 for (RenderingIntent i : intents) { in restore()
/dports/graphics/lightzone/LightZone-4.1.8-3-g36e87773/lightcrafts/src/com/lightcrafts/ui/editor/
H A DProofSelectableControl.java7 import com.lightcrafts.model.RenderingIntent;
142 RenderingIntent[] intents = RenderingIntent.getAll(); in initRenderingIntent()
143 for (RenderingIntent intent : intents) { in initRenderingIntent()
149 for (RenderingIntent intent : intents) { in initRenderingIntent()
160 RenderingIntent intent = in initRenderingIntent()
161 (RenderingIntent) renderingIntent.getSelectedItem(); in initRenderingIntent()
/dports/graphics/libjxl/libjxl-0.6.1/lib/jxl/
H A Dcolor_encoding_internal.h111 enum class RenderingIntent : uint32_t { enum
119 static inline const char* EnumName(RenderingIntent /*unused*/) { in EnumName() argument
122 static inline constexpr uint64_t EnumBits(RenderingIntent /*unused*/) { in EnumBits() argument
123 using RI = RenderingIntent; in EnumBits()
335 const RenderingIntent ri = RenderingIntent::kRelative) {
397 RenderingIntent rendering_intent;
H A Dcolor_encoding_internal.cc93 std::string ToString(RenderingIntent rendering_intent) { in ToString()
95 case RenderingIntent::kPerceptual: in ToString()
97 case RenderingIntent::kRelative: in ToString()
99 case RenderingIntent::kSaturation: in ToString()
101 case RenderingIntent::kAbsolute: in ToString()
187 const JxlRenderingIntent external, RenderingIntent* internal) { in ConvertExternalToInternalRenderingIntent()
190 *internal = RenderingIntent::kPerceptual; in ConvertExternalToInternalRenderingIntent()
193 *internal = RenderingIntent::kRelative; in ConvertExternalToInternalRenderingIntent()
196 *internal = RenderingIntent::kSaturation; in ConvertExternalToInternalRenderingIntent()
199 *internal = RenderingIntent::kAbsolute; in ConvertExternalToInternalRenderingIntent()
[all …]
/dports/mail/thunderbird/thunderbird-91.8.0/third_party/jpeg-xl/lib/jxl/
H A Dcolor_encoding_internal.h111 enum class RenderingIntent : uint32_t { enum
119 static inline const char* EnumName(RenderingIntent /*unused*/) { in EnumName() argument
122 static inline constexpr uint64_t EnumBits(RenderingIntent /*unused*/) { in EnumBits() argument
123 using RI = RenderingIntent; in EnumBits()
335 const RenderingIntent ri = RenderingIntent::kRelative) {
397 RenderingIntent rendering_intent;
/dports/www/firefox-esr/firefox-91.8.0/third_party/jpeg-xl/lib/jxl/
H A Dcolor_encoding_internal.h111 enum class RenderingIntent : uint32_t { enum
119 static inline const char* EnumName(RenderingIntent /*unused*/) { in EnumName() argument
122 static inline constexpr uint64_t EnumBits(RenderingIntent /*unused*/) { in EnumBits() argument
123 using RI = RenderingIntent; in EnumBits()
335 const RenderingIntent ri = RenderingIntent::kRelative) {
397 RenderingIntent rendering_intent;
/dports/www/firefox/firefox-99.0/third_party/jpeg-xl/lib/jxl/
H A Dcolor_encoding_internal.h111 enum class RenderingIntent : uint32_t { enum
119 static inline const char* EnumName(RenderingIntent /*unused*/) { in EnumName() argument
122 static inline constexpr uint64_t EnumBits(RenderingIntent /*unused*/) { in EnumBits() argument
123 using RI = RenderingIntent; in EnumBits()
336 const RenderingIntent ri = RenderingIntent::kRelative) {
398 RenderingIntent rendering_intent;
H A Dcolor_encoding_internal.cc93 std::string ToString(RenderingIntent rendering_intent) { in ToString()
95 case RenderingIntent::kPerceptual: in ToString()
97 case RenderingIntent::kRelative: in ToString()
99 case RenderingIntent::kSaturation: in ToString()
101 case RenderingIntent::kAbsolute: in ToString()
187 const JxlRenderingIntent external, RenderingIntent* internal) { in ConvertExternalToInternalRenderingIntent()
190 *internal = RenderingIntent::kPerceptual; in ConvertExternalToInternalRenderingIntent()
193 *internal = RenderingIntent::kRelative; in ConvertExternalToInternalRenderingIntent()
196 *internal = RenderingIntent::kSaturation; in ConvertExternalToInternalRenderingIntent()
199 *internal = RenderingIntent::kAbsolute; in ConvertExternalToInternalRenderingIntent()
[all …]
/dports/graphics/lightzone/LightZone-4.1.8-3-g36e87773/lightcrafts/src/com/lightcrafts/jai/opimage/
H A DLCMSColorConvertOpImage.java22 private final LCMSColorConvertDescriptor.RenderingIntent intent;
23 private final LCMSColorConvertDescriptor.RenderingIntent proofIntent;
33 LCMSColorConvertDescriptor.RenderingIntent intent, in LCMSColorConvertOpImage()
35 LCMSColorConvertDescriptor.RenderingIntent proofingIntent) { in LCMSColorConvertOpImage()
H A DLCMSColorConvertCRIF.java62 … (LCMSColorConvertDescriptor.RenderingIntent) args.getObjectParameter(1), in create()
64 … (LCMSColorConvertDescriptor.RenderingIntent) args.getObjectParameter(3)); in create()
/dports/graphics/rawtherapee/rawtherapee-5.8/rtengine/
H A Dgamutwarning.h37 enum RenderingIntent : int;
41 GamutWarning(cmsHPROFILE iprof, cmsHPROFILE gamutprof, RenderingIntent intent, bool bpc);
H A Dimproccoordinator.h82 RenderingIntent monitorIntent;
201 RenderingIntent lastOutputIntent;
283 void setMonitorProfile (const Glib::ustring& profile, RenderingIntent intent) override;
284 void getMonitorProfile (Glib::ustring& profile, RenderingIntent& intent) const override;
/dports/graphics/lightzone/LightZone-4.1.8-3-g36e87773/lightcrafts/src/com/lightcrafts/model/ImageEditor/
H A DImageEditorEngine.java715 …private static final Map<RenderingIntent, LCMSColorConvertDescriptor.RenderingIntent> renderingInt…
716 new HashMap<RenderingIntent, LCMSColorConvertDescriptor.RenderingIntent>();
719 renderingIntentMap.put( RenderingIntent.RELATIVE_COLORIMETRIC, in renderingIntentMap.put()
722 renderingIntentMap.put( RenderingIntent.PERCEPTUAL, in renderingIntentMap.put()
725 renderingIntentMap.put( RenderingIntent.SATURATION, in renderingIntentMap.put()
728 renderingIntentMap.put( RenderingIntent.ABSOLUTE_COLORIMETRIC, in renderingIntentMap.put()
731 renderingIntentMap.put( RenderingIntent.RELATIVE_COLORIMETRIC_BP, in renderingIntentMap.put()
735 public static LCMSColorConvertDescriptor.RenderingIntent getLCMSIntent(RenderingIntent intent) { in getLCMSIntent()
740 private LCMSColorConvertDescriptor.RenderingIntent proofIntent = null;
746 public LCMSColorConvertDescriptor.RenderingIntent getProofIntent() { in getProofIntent()
[all …]
/dports/graphics/art/ART-1.9.3/rtengine/
H A Dsettings.h44 RenderingIntent printerIntent; ///< Colorimetric intent used with the above profile
47 RenderingIntent monitorIntent; ///< Colorimetric intent used with the above profile
H A Dimproccoordinator.h76 RenderingIntent monitorIntent;
165 RenderingIntent lastOutputIntent;
240 void setMonitorProfile (const Glib::ustring& profile, RenderingIntent intent) override;
241 void getMonitorProfile (Glib::ustring& profile, RenderingIntent& intent) const override;
/dports/textproc/fop/fop-2.6/fop-core/src/main/java/org/apache/fop/util/
H A DColorSpaceCache.java33 import org.apache.xmlgraphics.java2d.color.RenderingIntent;
69 … public ColorSpace get(String profileName, String iccProfileSrc, RenderingIntent renderingIntent) { in get()

12345678910>>...19