We have moved!

You are currently looking at documentation for Umbraco 8 and older versions.
Go to docs.umbraco.com/umbraco-cms/fundamentals/backoffice/property-editors/built-in-umbraco-property-editors/media-picker-3 for documentation for Umbraco 9 and newer versions.

    Media Picker

    Alias: Umbraco.MediaPicker3

    Returns: IEnumerable<MediaWithCrops> or MediaWithCrops

    This property editors returns a single MediaWithCrops item if the "Pick multiple items" data type setting is disabled or a collection if it is enabled.

    Data Type Definition Example

    Media Picker Data Type Definition

    Accepted types

    Use setting to limit the picker to only select Media Items of these types.

    Pick multiple items

    Use this setting to enable the property to contain multiple items. When this is enabled the property editor returns an IEnumerable<MediaWithCrops>.

    You can still set the maximum amount to 1. Do so when you want to retrieve a collection but only allow the Content Editors to select one Media Item.

    Amount

    Use this setting to enforce a minimum and/or maximum amount of selected Media Items. Note that it is not possible to set a maximum when the "Pick multiple items" feature is disabled.

    Start node

    This setting is used to limit the Media Picker to certain parts of the Media Tree.

    Ignorer user start nodes

    Use this setting to overrule user permissions, to enable any user of this property to pick any Media Item of the chosen Start node.

    When this setting is enabled, a user who doesn't normally have access to the media selected as "Start Node" (/Design in this case), can access the media when using this particular Media Picker. If no Start node has been defined for this property any content can be viewed and selected of this property.

    Enable Focal Point

    Enable the focal point setter, do only enable this if the focal point is used or if you have Image crops defined.

    Image Crops

    Define local image crops. Local image crop data is stored on the document in this property. This means it can differentiate between documents.

    This is different from Global crops as they are defined on the Media Item, making the crops shared between all usage of that Media Item.

    Global crops are configured on the Image Cropper property of the Image Media Type

    Read about the Image Cropper here

    Content Example

    Media Picker Content

    MVC View Example

    Multiple enabled without Modelsbuilder

    @{
        var typedMultiMediaPicker = Model.Value<IEnumerable<MediaWithCrops>>("medias");
        foreach (var entry in typedMultiMediaPicker)
        {
            <img src="@entry.MediaItem.Url()" style="width:200px"/>
        }
    }
    

    Multiple enabled with Modelsbuilder

    @{
        var typedMultiMediaPicker = Model.Medias;
        foreach (var entry in typedMultiMediaPicker)
        {
            <img src="@entry.MediaItem.Url()" style="width:200px" />
        }
    }
    

    Multiple disabled without Modelsbuilder

    @{
        var typedMediaPickerSingle = Model.Value<MediaWithCrops>("media");
        if (typedMediaPickerSingle != null)
        {
            <img src="@typedMediaPickerSingle.MediaItem.Url()" style="width:200px" alt="@typedMediaPickerSingle.MediaItem.Value("alt")" />
        }
    }
    

    Multiple disabled with Modelsbuilder

    @{
        var typedMediaPickerSingle = Model.Media;
        if (typedMediaPickerSingle is MediaWithCrops mediaEntry)
        {
            <img src="@mediaEntry.MediaItem.Url()" style="width:200px"/>
        }
    }
    

    Using local crops

    Local image crops are stored and retrieved differently than global crops. Below are two examples of how to retrieve local crops.

    Using GetLocalCropUrl

    @{
        foreach (var entry in Model.Medias)
        {
            <img src="@entry.GetLocalCropUrl("cropAlias")"/>
        }
    }
    

    Using UrlHelper

    @{
        foreach (var entry in Model.Medias)
        {
            <img src="@Url.GetCropUrl(entry.LocalCrops, "cropAlias")"/>
        }
    }
    

    Use global crops

    Global image croppings are crops stored on the Media Item, by the Property Editor Image Cropper, making it shared between all usages of the media Item.

    The global crops are configured on the DataType of the umbracoFile property on the Media Type Image

    Read about the Image Cropper here

    Using GetCropUrl

    @{
        foreach (var entry in Model.Medias)
        {
            <img src="@entry.MediaItem.GetCropUrl("cropAlias")"/>
        }
    }
    

    Using UrlHelper

    @{
        foreach (var entry in Model.Medias)
        {
            <img src="@Url.GetCropUrl(entry.MediaItem, "cropAlias")"/>
        }
    }
    

    Add values programmatically

    This solution can be applied to both Media Picker 3 and Multi Media Picker 3

    @{
                            //Get media by Id
                            var media = mediaService.GetById(1150);
                            
                            //Initialize new list of dictionaries
                            var dictionary = new List<Dictionary<string, string>>
                            {
                                new Dictionary<string, string>()
                            {
                                //Create new GUID for "key"
                                { "key", Guid.NewGuid().ToString() },
                                
                                //Reference our media in "mediaKey"
                                { "mediaKey", media.Key.ToString() },
                                { "crops", null },
                                { "focalPoint", null }
                            }
                            };
    
                            //Serialize entire list of dictionaries
                            var json = JsonConvert.SerializeObject(dictionary);
                            
                            //Assign JSON as the value of Media Picker 3 property
                            content.SetValue("firstPic", json);
    }