mirror of
https://github.com/ShiftOS-Rewind/shiftskn.git
synced 2025-01-22 17:52:14 +00:00
70d9df993d
I think this one can decompile 0.0.x skins, not sure... Maybe I should check?
22 lines
612 B
C#
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));
|
|
}
|
|
}
|
|
}
|