mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-02-24 12:11:09 +01:00
* Adds QOI support to Peek * Reduce allocations on QoiImage * Add to QOI to Peek's NOTICE as well. * Ensure file stream is closed after reading QOI
33 lines
730 B
C#
33 lines
730 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
|
|
{
|
|
/// <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,
|
|
}
|
|
}
|