Files
OpenRec-Launcher/Launcherapi/Images.cs
recroom2016tutorial e95084d5fe Add project files.
2022-06-11 21:42:46 -04:00

28 lines
589 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OpenRec2.Launcherapi
{
internal class Images
{
//to be able to read image files as images in gui
public static Image bytearraytoimage(byte[] source)
{
try
{
MemoryStream ms = new MemoryStream(source);
Image ret = Image.FromStream(ms);
return ret;
}
catch
{
return null;
}
}
}
}