11 lines
304 B
C#
11 lines
304 B
C#
namespace StitcherApi.Services.Utilities;
|
|
|
|
public static class TileHelper
|
|
{
|
|
public static string GetTileFileName(int row, int col)
|
|
{
|
|
string rowStr =
|
|
row < 26 ? ((char)('A' + row)).ToString() : "A" + ((char)('A' + (row - 26)));
|
|
return $"{rowStr}{col + 1}.png";
|
|
}
|
|
}
|