Gets or sets color management engine which will be used during image transformation. Graphics Mill supports the following engines: LittleCMS and Adobe CMM. The property also allows disabling color management and perform transformation without color matching.
Namespace:
Aurigma.GraphicsMill
Assembly:
Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)
public ColorManagementEngine ColorManagementEngine { get; set; }
Color management will be applied during transformation of image between color formats in case if all the following conditions are met:
If you do not need to apply color management during image transformation, set this property to None.
using (var bitmap = new Bitmap(@"Images\in.jpg")) { bitmap.ColorManagement.ColorManagementEngine = ColorManagementEngine.LittleCms; //bitmap.ColorManagement.ColorManagementEngine = ColorManagementEngine.AdobeCmm; }