Files
Umbraco-CMS/src/Umbraco.Core/Models/ImageUrlGenerationOptions.cs

69 lines
2.0 KiB
C#
Raw Normal View History

namespace Umbraco.Cms.Core.Models
{
2020-02-09 11:12:29 -08:00
/// <summary>
/// These are options that are passed to the IImageUrlGenerator implementation to determine the URL that is generated.
2020-02-09 11:12:29 -08:00
/// </summary>
public class ImageUrlGenerationOptions
{
2022-02-21 10:12:51 +01:00
public ImageUrlGenerationOptions(string? imageUrl) => ImageUrl = imageUrl;
2020-02-09 11:12:29 -08:00
2022-02-21 10:12:51 +01:00
public string? ImageUrl { get; }
public int? Width { get; set; }
public int? Height { get; set; }
public int? Quality { get; set; }
public ImageCropMode? ImageCropMode { get; set; }
public ImageCropAnchor? ImageCropAnchor { get; set; }
2022-01-21 11:43:58 +01:00
public FocalPointPosition? FocalPoint { get; set; }
2022-01-21 11:43:58 +01:00
public CropCoordinates? Crop { get; set; }
2022-01-21 11:43:58 +01:00
public string? CacheBusterValue { get; set; }
2022-01-21 11:43:58 +01:00
public string? FurtherOptions { get; set; }
2020-02-09 11:12:29 -08:00
/// <summary>
/// The focal point position, in whatever units the registered IImageUrlGenerator uses, typically a percentage of the total image from 0.0 to 1.0.
2020-02-09 11:12:29 -08:00
/// </summary>
public class FocalPointPosition
{
public FocalPointPosition(decimal left, decimal top)
2020-02-09 11:12:29 -08:00
{
Left = left;
Top = top;
}
public decimal Left { get; }
2020-02-09 11:12:29 -08:00
public decimal Top { get; }
}
2020-02-09 11:12:29 -08:00
/// <summary>
/// The bounds of the crop within the original image, in whatever units the registered IImageUrlGenerator uses, typically a percentage between 0.0 and 1.0.
2020-02-09 11:12:29 -08:00
/// </summary>
public class CropCoordinates
{
public CropCoordinates(decimal left, decimal top, decimal right, decimal bottom)
2020-02-09 11:12:29 -08:00
{
Left = left;
Top = top;
Right = right;
Bottom = bottom;
2020-02-09 11:12:29 -08:00
}
public decimal Left { get; }
public decimal Top { get; }
public decimal Right { get; }
public decimal Bottom { get; }
}
}
}