Class ImageDecodeAcceleratorCapability
- Namespace
- OpenQA.Selenium.DevTools.V143.SystemInfo
- Assembly
- WebDriver.dll
Describes a supported image decoding profile with its associated minimum and maximum resolutions and subsampling.
public sealed class ImageDecodeAcceleratorCapability
- Inheritance
-
ImageDecodeAcceleratorCapability
- Inherited Members
Properties
ImageType
Image coded, e.g. Jpeg.
[JsonPropertyName("imageType")]
public ImageType ImageType { get; set; }
Property Value
MaxDimensions
Maximum supported dimensions of the image in pixels.
[JsonPropertyName("maxDimensions")]
public Size MaxDimensions { get; set; }
Property Value
MinDimensions
Minimum supported dimensions of the image in pixels.
[JsonPropertyName("minDimensions")]
public Size MinDimensions { get; set; }
Property Value
Subsamplings
Optional array of supported subsampling formats, e.g. 4:2:0, if known.
[JsonPropertyName("subsamplings")]
public SubsamplingFormat[] Subsamplings { get; set; }