ColorConverter.DeviceLinkProfile Property

Gets or sets a device link color profile.

Namespace: Aurigma.GraphicsMill.Transforms
Assembly: Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)

Syntax

C#
public ColorProfile DeviceLinkProfile { get; set; }

Examples

C#
using (var reader = ImageReader.Create(@"Images\tangerine.tif"))
using (var converter = new ColorConverter(PixelFormat.Format32bppCmyk))
using (var writer = ImageWriter.Create(@"Images\Output\DeviceLinkProfileTest.tif"))
{
    converter.ColorManagementEngine = ColorManagementEngine.LittleCms;
    converter.DeviceLinkProfile = new ColorProfile(@"_Input\ColorProfiles\ISOcoated_v2_to_PSOcoated_v3_DeviceLink.icc");
    converter.DestinationProfile = new ColorProfile(@"_Input\ColorProfiles\PSOcoated_v3.icc");

    Pipeline.Run(reader + converter + writer);
}

See Also

Reference