Updated NuGet Dependencies (#14795)

* Updated nuget packages and fixed breaking changes in ImageSharp

* Update to .net8 rc1
This commit is contained in:
Bjarke Berg
2023-09-19 11:23:20 +02:00
committed by GitHub
parent a133a4b57b
commit 989759fa20
18 changed files with 68 additions and 62 deletions

View File

@@ -64,7 +64,7 @@ public class CropWebProcessor : IImageWebProcessor
Vector2 xy2 = ExifOrientationUtilities.Transform(new Vector2(right, bottom), Vector2.Zero, Vector2.One, orientation);
// Scale points to a pixel based rectangle
Size size = image.Image.Size();
Size size = image.Image.Size;
return Rectangle.Round(RectangleF.FromLTRB(
MathF.Min(xy1.X, xy2.X) * size.Width,