Skip to main content

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>

note

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

NameDescriptionPossible values
RgbColorProfileFileNameThe name of the RGB color profile. For details, refer to the Color management topic.file name
CmykColorProfileFileNameThe name of the CMYK color profile.file name
GrayscaleColorProfileFileNameThe name of the grayscale color profile.file name
ColorProfilesDirectoryThe folder path where color profiles are stored. Default: ..\assets\ColorProfilesfolder path
PdfRenderDeviceProfileEnabledIf True, enables DeviceCMYK and does not embed any color profile into the resulting PDF file. Requires CmykColorProfileFileName. Default: FalseTrue, False
PdfRenderKeepOriginalColorsDisables color management and maintains original colors. Unlike PdfRenderDeviceProfileEnabled, it does not convert colors to destination space. Default: FalseTrue, False
PdfHiResRasterizeVectorLayersAllows for rasterizing vector elements in the PDF output. Default: FalseTrue, False

Text

NameDescriptionPossible values
FontDirectoryThe folder path where fonts are stored. Default: ..\assets\fontsfolder path
PsdTextBoxWorkaroundEnabledAllows for correcting a text position within the text box if Photoshop shifts this text for the used script font. Default: FalseTrue, False
LegacyTextEngineEnabledIf True, the Rich text editor will open for editing text elements. Default: FalseTrue, False
PreferredFallbackFontsFonts to be checked first when glyphs are missing. List PostScript names, e.g., "ArialMT;Menlo-Bold". Default: empty stringstring
NotFoundGlyphRemovalEnabledIf True, missing glyphs will be removed during rendering. If False, throws an exception. Default: FalseTrue, False
PdfTextOutputModeDefines how text is rendered to PDF. Outlines (vector) or Text (strings). Default: OutlinesOutlines, Text

Reading templates

NameDescriptionPossible values
UseInDesignLockedStateIf True, enables reading the Item.Locked attribute from InDesign templates. Default: TrueTrue, False
UseInDesignVisibleStateIf True, enables reading the Item.Visible attribute from InDesign templates. Default: TrueTrue, False
IgnoreInDesignMissingLinksIf True, creates empty image placeholders instead of missing images. Default: FalseTrue, False
LegacyIdmlBleedParsingEnabledIf True, loads IDML templates using version 5.32 logic for bleed/slug zones. Default: FalseTrue, False
InterpretEmptyGraphicFrameAsImagePlaceholderIf True, imports graphic frames from IDML as image placeholders. Default: FalseTrue, False
FlattenGroupsIf True, every element of a group will be imported as a separate item. Default: FalseTrue, False

Product themes

NameDescriptionPossible values
DefaultColorOverlayBlendModeThe blend mode used when applying color themes to products. Default: HardLightstring
DefaultColorOverlayOpacityThe opacity used when applying color themes to products. Default: 0.8number

Miscellaneous

NameDescriptionPossible values
UseAnisotropic9ResizeModeEnables Anisotropic9 resize interpolation. Use when print rendering fails with ippStsExceededSizeError. Default: FalseTrue, False
UseHiResDpiForPdfResizeIf True, uses high-resolution DPI (300) for preview zooming. Default: FalseTrue, False
LegacyBlackAndWhiteEffectEnabledIf True, enables the older algorithm for B&W effect calculation (based on illumination). Default: FalseTrue, False
EnableCachingStateResourcesIf True, enables additional caching of state resources, for example, for high read-to-write ratios and heavy artifact rendering workloads. Default: FalseTrue, False
Was this page helpful?