mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-02-25 04:34:13 +01:00
25 lines
567 B
C#
25 lines
567 B
C#
|
|
// Copyright (c) Microsoft Corporation
|
|||
|
|
// The Microsoft Corporation licenses this file to you under the MIT license.
|
|||
|
|
// See the LICENSE file in the project root for more information.
|
|||
|
|
|
|||
|
|
namespace Microsoft.PowerToys.FilePreviewCommon
|
|||
|
|
{
|
|||
|
|
public enum BgcodeThumbnailFormat
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// PNG image format.
|
|||
|
|
/// </summary>
|
|||
|
|
PNG = 0,
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// JPG image format.
|
|||
|
|
/// </summary>
|
|||
|
|
JPG = 1,
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// QOI image format.
|
|||
|
|
/// </summary>
|
|||
|
|
QOI = 2,
|
|||
|
|
}
|
|||
|
|
}
|