GcodeThumbnailFormat.cs
1 // Copyright (c) Microsoft Corporation 2 // The Microsoft Corporation licenses this file to you under the MIT license. 3 // See the LICENSE file in the project root for more information. 4 5 namespace Microsoft.PowerToys.FilePreviewCommon 6 { 7 /// <summary> 8 /// The gcode thumbnail image format. 9 /// </summary> 10 public enum GcodeThumbnailFormat 11 { 12 /// <summary> 13 /// Unknown image format. 14 /// </summary> 15 Unknown, 16 17 /// <summary> 18 /// JPG image format. 19 /// </summary> 20 JPG, 21 22 /// <summary> 23 /// QOI image format. 24 /// </summary> 25 QOI, 26 27 /// <summary> 28 /// PNG image format. 29 /// </summary> 30 PNG, 31 } 32 }