Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Digizuite.Episerver.Models.Media.Image
    Note, Small, Medium and LargeThumbnail has been removed. Out of the box it will contain Preview and Thumbnail. If you need you own custom formats, then you have to extend the class. In this example we add the small quality.

    Code Block
    languagec#
    [ContentType(GUID = "0af71ce8-1e4b-499b-bf24-24e7fce44121")] 
    [DigizuiteType(AssetTypeIds = new[] {GlobalConstants.AssetTypes.Image})]
    public class ExtendedDigiImage : Image 
    {
         [DigizuiteMediaFormat("imageSmall", "3C95F58F-5DD7-4AFB-B1C8-48E05901CE6D")]    
         public virtual Blob Small { get; set; } 
    }

...