diff --git a/src/ImageSharp/Metadata/Profiles/Exif/ExifProfile.cs b/src/ImageSharp/Metadata/Profiles/Exif/ExifProfile.cs index 70189eb9f..d7932f90b 100644 --- a/src/ImageSharp/Metadata/Profiles/Exif/ExifProfile.cs +++ b/src/ImageSharp/Metadata/Profiles/Exif/ExifProfile.cs @@ -323,7 +323,7 @@ public sealed class ExifProfile : IDeepCloneable // Ensure the point is within the image dimensions. point = Vector2.Clamp(point, Vector2.Zero, new Vector2(width - 1, height - 1)); - // Round the point to the nearest pixel. + // Floor the point to the nearest pixel. location.Value[0] = (ushort)Math.Floor(point.X); location.Value[1] = (ushort)Math.Floor(point.Y);