Skip to content
This repository was archived by the owner on Jan 19, 2025. It is now read-only.

Commit 630e5ce

Browse files
committed
Fix width/height
1 parent 63237fb commit 630e5ce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Src/Core/Mackiloha.App/ImageWrapper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public ImageWrapper(string filePath)
5050
_image = image;
5151
}
5252

53-
public static ImageWrapper FromRGBA(byte[] data, int height, int width)
53+
public static ImageWrapper FromRGBA(byte[] data, int width, int height)
5454
{
5555
var image = Image.LoadPixelData<Rgba32>(data, width, height);
5656
return new ImageWrapper(image);

0 commit comments

Comments
 (0)