Enum RequestEncoding
Enumeration of supported image data encoding formats. Determines how the server should interpret the image data bytes.
public enum RequestEncoding
Fields
[OriginalName("REQUEST_ENCODING_BROTLI")] Brotli = 2Brotli-compressed image data for reduced bandwidth usage Server will decompress using Brotli algorithm before processing
[OriginalName("REQUEST_ENCODING_UNCOMPRESSED")] Uncompressed = 1Uncompressed raw image data (e.g., raw RGB pixels, BMP, etc.)
[OriginalName("REQUEST_ENCODING_UNSPECIFIED")] Unspecified = 0Unspecified encoding. Assumed to be uncompressed.