This commit is contained in:
Meizar Rimadana 2025-08-01 08:36:27 +07:00
parent ce95630cc6
commit 73d4c02191
2 changed files with 11 additions and 3 deletions

View file

@ -6,7 +6,15 @@ internal record Coordinate
public string Name { get; } public string Name { get; }
public int Row { get; } public int Row { get; }
public int Col { get; } public int Col { get; }
public string Path => BasePath + Name + ".png";
public string FullPath
{
get
{
string filename = Name + ".png";
return Path.Combine(BasePath, filename);
}
}
public Coordinate(string name) public Coordinate(string name)
{ {

View file

@ -9,7 +9,7 @@ public class ImageGenerator
string[] inputs = requestBody.CanvasRect.Split(":"); string[] inputs = requestBody.CanvasRect.Split(":");
double scale = requestBody.OutputScale; double scale = requestBody.OutputScale;
Coordinate a1 = new Coordinate("A1"); Coordinate a1 = new Coordinate("A1");
Mat a1Mat = new Mat(a1.Path); Mat a1Mat = new Mat(a1.FullPath);
int width = a1Mat.Width; int width = a1Mat.Width;
int height = a1Mat.Height; int height = a1Mat.Height;
if (scale < 1) if (scale < 1)
@ -36,7 +36,7 @@ public class ImageGenerator
{ {
try try
{ {
Mat mat = new Mat(item.Path); Mat mat = new Mat(item.FullPath);
if (scale < 1) if (scale < 1)
{ {
mat = mat.Resize(new Size(width, height)); mat = mat.Resize(new Size(width, height));