2023-09-19 15:33:55 +01:00
|
|
|
|
// 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.
|
|
|
|
|
|
|
2023-12-18 15:54:17 +00:00
|
|
|
|
namespace Microsoft.PowerToys.FilePreviewCommon
|
2023-09-19 15:33:55 +01:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// The gcode thumbnail image format.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public enum GcodeThumbnailFormat
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Unknown image format.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
Unknown,
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// JPG image format.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
JPG,
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// QOI image format.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
QOI,
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// PNG image format.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
PNG,
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|