Files
annotations/Azaion.Common/Extensions/SizeExtensions.cs
T
Oleksandr Bezdieniezhnykh d1ce9d9365 fix editing tiled images
2025-08-14 12:54:32 +03:00

10 lines
309 B
C#

using System.Windows;
namespace Azaion.Common.Extensions;
public static class SizeExtensions
{
public static bool FitSizeForAI(this Size size) =>
// Allow to be up to FullHD to save as 1280*1280
size.Width <= Constants.AI_TILE_SIZE * 1.5 && size.Height <= Constants.AI_TILE_SIZE * 1.5;
}