Пример #1
0
 /// <summary>
 /// Creates a flexible image.
 /// </summary>
 /// <param name="generalSetup">The general setup object for the image.</param>
 /// <param name="sourceSet">The source-set. Do not pass null.</param>
 public EwfImage(ImageSetup generalSetup, FlexibleImageSourceSet sourceSet)
 {
     // Reimplement with srcset width descriptors and the sizes attribute if needed.
     children = generalSetup.ComponentGetter(sourceSet.SrcAndSrcsetGetters.Item1, sourceSet.SrcAndSrcsetGetters.Item2);
 }
Пример #2
0
 /// <summary>
 /// Creates an image with a single source. Use only when you do not know the width of the image resource, or if the resource only supports a single width.
 /// </summary>
 /// <param name="generalSetup">The general setup object for the image.</param>
 /// <param name="imageResource">Do not pass null.</param>
 public EwfImage(ImageSetup generalSetup, ResourceInfo imageResource)
 {
     children = generalSetup.ComponentGetter(() => imageResource.GetUrl(), () => "");
 }
Пример #3
0
 /// <summary>
 /// Creates a fixed-size image.
 /// </summary>
 /// <param name="generalSetup">The general setup object for the image.</param>
 /// <param name="sourceSet">The source-set. Do not pass null.</param>
 public EwfImage(ImageSetup generalSetup, FixedSizeImageSourceSet sourceSet)
 {
     children = generalSetup.ComponentGetter(sourceSet.SrcAndSrcsetGetters.Item1, sourceSet.SrcAndSrcsetGetters.Item2);
 }