shiftskn-rewind/shiftskn/Pic2PNG.cs
AShifter 70d9df993d Add (unfinished) code
I think this one can decompile 0.0.x skins, not sure... Maybe I should
check?
2018-02-12 09:10:20 -07:00

22 lines
612 B
C#

using System;
using System.Drawing;
using System.Drawing.Imaging;
using System.IO;
namespace shiftskn
{
public abstract class Pic2PNG
{
public static void Convert(string input, string output = "")
{
if (output == "" || output == null)
{
output = input;
}
Image pic = Image.FromFile(input);
output = Path.ChangeExtension(output, "png");
pic.Save(output, ImageFormat.Png);
Console.WriteLine("Converted " + Path.GetFileName(input) + " to " + Path.GetFileName(output));
}
}
}