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

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

Control the JPG compression quality. 1 is the lowest quality and 100 is the highest. The default is the original image's quality or 90% if not available. Reducing quality generates JPG images much smaller in file size.
public Quality ( object value ) : Transformation
value object
Результат Transformation
        public Transformation Quality(object value)
        {
            return Add("quality", value);
        }