CloudinaryDotNet.Transformation.AspectRatio C# (CSharp) Метод

AspectRatio() публичный Метод

Add the aspect_ratio parameter to resize or crop the image to a new aspect ratio. Decimal format (e.g., 1.33 or 2.5)
public AspectRatio ( double value ) : Transformation
value double A decimal value representing the ratio of the width divided by the height
Результат Transformation
        public Transformation AspectRatio(double value)
        {
            return AspectRatio(value.ToString(CultureInfo.InvariantCulture));
        }

Same methods

Transformation::AspectRatio ( int nom, int denom ) : Transformation
Transformation::AspectRatio ( string value ) : Transformation