diff --git a/src/Magick.NET.Core/Factories/IMagickGeometryFactory.cs b/src/Magick.NET.Core/Factories/IMagickGeometryFactory.cs index 3afe9427e4..833c1311a2 100644 --- a/src/Magick.NET.Core/Factories/IMagickGeometryFactory.cs +++ b/src/Magick.NET.Core/Factories/IMagickGeometryFactory.cs @@ -69,6 +69,6 @@ public interface IMagickGeometryFactory /// Initializes a new instance using the specified page size. /// /// The page size. - /// A instance that represents the specified page size. + /// A instance that represents the specified page size at 72 dpi. IMagickGeometry CreateFromPageSize(string pageSize); } diff --git a/src/Magick.NET/Factories/MagickGeometryFactory.cs b/src/Magick.NET/Factories/MagickGeometryFactory.cs index 7285a0e280..4219f70a19 100644 --- a/src/Magick.NET/Factories/MagickGeometryFactory.cs +++ b/src/Magick.NET/Factories/MagickGeometryFactory.cs @@ -76,7 +76,7 @@ public IMagickGeometry Create(string value) /// Initializes a new instance using the specified page size. /// /// The page size. - /// A instance that represents the specified page size. + /// A instance that represents the specified page size at 72 dpi. public IMagickGeometry CreateFromPageSize(string pageSize) => MagickGeometry.FromPageSize(pageSize); } diff --git a/src/Magick.NET/Types/MagickGeometry.cs b/src/Magick.NET/Types/MagickGeometry.cs index d0fb9be687..1cbee421c4 100644 --- a/src/Magick.NET/Types/MagickGeometry.cs +++ b/src/Magick.NET/Types/MagickGeometry.cs @@ -226,7 +226,7 @@ public static explicit operator MagickGeometry(string value) /// Initializes a new instance using the specified page size. /// /// The page size. - /// A instance that represents the specified page size. + /// A instance that represents the specified page size at 72 dpi. public static IMagickGeometry FromPageSize(string pageSize) { Throw.IfNullOrEmpty(nameof(pageSize), pageSize);