Enum 1908 Image Encoding in 27
- App
- System Application
- Namespace
- System.Device
Versions171819202122232425262728latest
Source in 27
src/System Application/App/Camera and Media Interaction/src/ImageEncoding.Enum.al30 lines, Copyright (c) Microsoft Corporation. MIT
// ------------------------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
// ------------------------------------------------------------------------------------------------
namespace System.Device;
/// <summary>
/// Specifies the supported encodings for the Camera Interaction page.
/// </summary>
enum 1908 "Image Encoding"
{
Extensible = false;
/// <summary>
/// JPEG image encoding format.
/// </summary>
value(0; JPEG)
{
Caption = 'JPEG';
}
/// <summary>
/// PNG image encoding format.
/// </summary>
value(1; PNG)
{
Caption = 'PNG';
}
}Values, 2
| Id | Name | Obsolete |
|---|---|---|
| 0 | JPEG | - |
| 1 | PNG | - |