Image attributes
Applies To: Dynamics 365 (online), Dynamics 365 (on-premises), Dynamics CRM 2016, Dynamics CRM Online
Entity records that include image data provide a unique experience within the application. As a developer you need to understand how you work with image data.
Only certain system entities and custom entities support images. For information about which system entities support images, see Entity images.
In this topic
Supporting attributes
Retrieving image data
Uploading image data
Supporting attributes
For those entities which support image attributes, the SchemaName of the entity image attribute is always EntityImage. When an image attribute is added to an entity some additional attributes are created to support it as shown in the following table.
Schema Name |
Attribute Type Name |
Description |
---|---|---|
EntityImage_Timestamp |
BigIntType |
The value represents when the image was last updated and is used to help make sure that the latest version of the image is downloaded and cached on the client. |
EntityImage_URL |
StringType |
An absolute URL to display the entity image in a client. The URL is composed this way:
For example: |
EntityImageId |
UniqueIdentifierType |
The unique identifier of the image |
Note
Clients that do not use the current .NET assemblies need to include SdkClientVersion with a value of ‘6.0.0.0’ or higher in order to receive ImageAttributeMetadata attributes. More information: SdkClientVersion.
Retrieving image data
When you use RetrieveMultiple or Retrieve the EntityImage is not included when the ColumnSet.AllColumns property is set to true. Because of the potential size of data in this attribute, to return this attribute you must explicitly request it.
The binary data representing the image isn’t returned using the deprecated ExecuteFetchRequest class. You should use RetrieveMultipleRequest instead.
More information: Sample: Set and retrieve entity images.
Uploading image data
To update images set the value of the EntityImage to a byte[] that contains the content of the file. All images are displayed in a 144x144 pixel square. Images will be cropped and resized to reduce the size of the data before being saved.
Images with at least one side larger than 144 pixels are cropped on center to 144x144.
Images with both sides smaller than 144 are cropped square to their smallest side.
The following table shows two examples.
Before |
After |
---|---|
300x428 |
144x144 |
91x130 |
91x91 |
More information: Sample: Set and retrieve entity images.
See Also
Introduction to entities in Microsoft Dynamics 365
Introduction to entity attributes in Microsoft Dynamics 365
Sample: Set and retrieve entity images
Microsoft Dynamics 365
© 2016 Microsoft. All rights reserved. Copyright