Device Information Settings for the ImageInteractive Rendering Format
The following table lists the device information settings for rendering in IMAGEInteractive format.
Available ImageInteractive Device Information Settings
The names of the properties in Device Information Settings are Case-Sensitive.
Name | Type | Description |
---|---|---|
OutputFormat | String | Defines the output format of the produced image. Supported formats are: BMP, EMF, EMFPLUS, GIF, JPEG, PNG. |
TextRenderingHint | string | Sets the rendering mode for text using a TextRenderingHint enumeration member. The default value depends on the machine settings - if it has ClearType enabled, then ClearTypeGridFit will be used. Otherwise the rendering algorithm will use AntiAliasGridFit hinting. If text rendering hinting is not supported, the SystemDefault value will be used. |
For a detailed example of how to set up the settings for a rendering extension, see extensions Element.
Example
XML-based configuration file:
<configuration>
…
<Telerik.Reporting>
<extensions>
<render>
<extension name="IMAGEInteractive">
<parameters>
<parameter name="OutputFormat" value="PNG"/>
<parameter name="TextRenderingHint" value="AntiAliasGridFit"/>
</parameters>
</extension>
</render>
</extensions>
</Telerik.Reporting>
…
</configuration>
JSON-based configuration file:
"telerikReporting": {
"extensions": [
{
"name": "IMAGEInteractive",
"parameters": [
{
"Name": "OutputFormat",
"Value": "PNG"
},
{
"Name": "TextRenderingHint",
"Value": "AntiAliasGridFit"
}
]
}
]
}