Aurigma.DesignAtoms.config
The ~/Configuration/Aurigma.DesignAtoms.config file allows you to configure the location of color profiles.
The following snippet shows parameters for working with fonts, product themes, and color management. You can set these in the Aurigma.DesignAtoms section of Web.config or in the separate ~/Configuration/Aurigma.DesignAtoms.config file.
<Aurigma.DesignAtoms>
<add key="RgbColorProfileFileName" value="" />
<add key="CmykColorProfileFileName" value="" />
<add key="GrayscaleColorProfileFileName" value="" />
<add key="ColorProfilesDirectory" value="..\assets\ColorProfiles" />
<add key="PdfRenderDeviceProfileEnabled" value="False" />
<add key="PdfRenderKeepOriginalColors" value="False" />
<add key="PdfHiResRasterizeVectorLayers" value="False" />
<add key="FontDirectory" value="..\assets\fonts" />
<add key="PsdTextBoxWorkaroundEnabled" value="False" />
<add key="LegacyTextEngineEnabled" value="False" />
<add key="PreferredFallbackFonts" value="" />
<add key="NotFoundGlyphRemovalEnabled" value="False" />
<add key="PdfTextOutputMode" value="Outlines" />
<add key="UseInDesignLockedState" value="True" />
<add key="UseInDesignVisibleState" value="True" />
<add key="IgnoreInDesignMissingLinks" value="False" />
<add key="LegacyIdmlBleedParsingEnabled" value="False" />
<add key="InterpretEmptyGraphicFrameAsImagePlaceholder" value="False" />
<add key="FlattenGroups" value="False" />
<add key="DefaultColorOverlayBlendMode" value="HardLight" />
<add key="DefaultColorOverlayOpacity" value="0.8" />
<add key="UseAnisotropic9ResizeMode" value="False" />
<add key="UseHiResDpiForPdfResize" value="False" />
<add key="LegacyBlackAndWhiteEffectEnabled" value="False" />
<add key="EnableCachingStateResources" value="False" />
</Aurigma.DesignAtoms>
Parameters defining paths are either relative or absolute. Relative paths to folders are specified from your site root and start with ~/ (for example, ~/ColorProfiles). Absolute paths are complete ones; they start either with a drive letter (for example, C:\\) or \\ for network locations.
Let's look at these parameters in more detail.
Color management
| Name | Description | Possible values |
|---|---|---|
| RgbColorProfileFileName | The name of the RGB color profile. For details, refer to the Color management topic. | file name |
| CmykColorProfileFileName | The name of the CMYK color profile. | file name |
| GrayscaleColorProfileFileName | The name of the grayscale color profile. | file name |
| ColorProfilesDirectory | The folder path where color profiles are stored. Default: ..\assets\ColorProfiles | folder path |
| PdfRenderDeviceProfileEnabled | If True, enables DeviceCMYK and does not embed any color profile into the resulting PDF file. Requires CmykColorProfileFileName. Default: False | True, False |
| PdfRenderKeepOriginalColors | Disables color management and maintains original colors. Unlike PdfRenderDeviceProfileEnabled, it does not convert colors to destination space. Default: False | True, False |
| PdfHiResRasterizeVectorLayers | Allows for rasterizing vector elements in the PDF output. Default: False | True, False |