naps2/NAPS2.Sdk/Util/ImageExtensions.cs
Ben Olden-Cooligan b62100fb07 Remove unused usings
No longer keeping System, System.Collections.Generic, System.Linq
2019-07-14 11:26:56 -04:00

16 lines
326 B
C#

using System.Drawing;
namespace NAPS2.Util
{
public static class ImageExtensions
{
public static void SafeSetResolution(this Bitmap image, float xDpi, float yDpi)
{
if (xDpi > 0 && yDpi > 0)
{
image.SetResolution(xDpi, yDpi);
}
}
}
}