Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
PlatformUtilities.cs
Go to the documentation of this file.
1using System;
2using System.IO;
3
4namespace Terraria.Utilities;
5
6public static class PlatformUtilities
7{
8 public static void SavePng(Stream stream, int width, int height, int imgWidth, int imgHeight, byte[] data)
9 {
10 throw new NotSupportedException("Use Bitmap to save png images on windows");
11 }
12}
static void SavePng(Stream stream, int width, int height, int imgWidth, int imgHeight, byte[] data)