// 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. using System.Globalization; namespace Microsoft.PowerToys.ThumbnailHandler.Bgcode { internal static class Program { private static BgcodeThumbnailProvider _thumbnailProvider; /// /// The main entry point for the application. /// [STAThread] public static void Main(string[] args) { ApplicationConfiguration.Initialize(); if (args != null) { if (args.Length == 2) { string filePath = args[0]; uint cx = Convert.ToUInt32(args[1], 10); _thumbnailProvider = new BgcodeThumbnailProvider(filePath); Bitmap thumbnail = _thumbnailProvider.GetThumbnail(cx); if (thumbnail != null) { filePath = filePath.Replace(".bgcode", ".bmp"); thumbnail.Save(filePath, System.Drawing.Imaging.ImageFormat.Bmp); } } else { MessageBox.Show("Bgcode thumbnail - wrong number of args: " + args.Length.ToString(CultureInfo.InvariantCulture)); } } } } }