@@ -2280,8 +2280,8 @@ public void CopyPixels(IMagickImage source, IMagickGeometry geometry, int x, int
22802280 }
22812281
22822282 /// <summary>
2283- /// Crop image (subregion of original image). RePage should be called unless the Page information
2284- /// is needed.
2283+ /// Crop image (subregion of original image). <see cref="ResetPage"/> should be called unless
2284+ /// the <see cref="Page"/> information is needed.
22852285 /// </summary>
22862286 /// <param name="width">The width of the subregion to crop.</param>
22872287 /// <param name="height">The height of the subregion to crop.</param>
@@ -2290,8 +2290,8 @@ public void Crop(uint width, uint height)
22902290 => Crop ( width , height , Gravity . Undefined ) ;
22912291
22922292 /// <summary>
2293- /// Crop image (subregion of original image). RePage should be called unless the Page information
2294- /// is needed.
2293+ /// Crop image (subregion of original image). <see cref="ResetPage"/> should be called unless
2294+ /// the <see cref="Page"/> information is needed.
22952295 /// </summary>
22962296 /// <param name="width">The width of the subregion to crop.</param>
22972297 /// <param name="height">The height of the subregion to crop.</param>
@@ -2301,17 +2301,17 @@ public void Crop(uint width, uint height, Gravity gravity)
23012301 => Crop ( new MagickGeometry ( 0 , 0 , width , height ) , gravity ) ;
23022302
23032303 /// <summary>
2304- /// Crop image (subregion of original image). RePage should be called unless the Page information
2305- /// is needed.
2304+ /// Crop image (subregion of original image). <see cref="ResetPage"/> should be called unless
2305+ /// the <see cref="Page"/> information is needed.
23062306 /// </summary>
23072307 /// <param name="geometry">The subregion to crop.</param>
23082308 /// <exception cref="MagickException">Thrown when an error is raised by ImageMagick.</exception>
23092309 public void Crop ( IMagickGeometry geometry )
23102310 => Crop ( geometry , Gravity . Undefined ) ;
23112311
23122312 /// <summary>
2313- /// Crop image (subregion of original image). RePage should be called unless the Page information
2314- /// is needed.
2313+ /// Crop image (subregion of original image). <see cref="ResetPage"/> should be called unless
2314+ /// the <see cref="Page"/> information is needed.
23152315 /// </summary>
23162316 /// <param name="geometry">The subregion to crop.</param>
23172317 /// <param name="gravity">The position where the cropping should start from.</param>
@@ -5144,13 +5144,6 @@ public void RemoveReadMask()
51445144 public void RemoveWriteMask ( )
51455145 => _nativeInstance . SetWriteMask ( null ) ;
51465146
5147- /// <summary>
5148- /// Resets the page property of this image.
5149- /// </summary>
5150- /// <exception cref="MagickException">Thrown when an error is raised by ImageMagick.</exception>
5151- public void RePage ( )
5152- => Page = new MagickGeometry ( 0 , 0 , 0 , 0 ) ;
5153-
51545147 /// <summary>
51555148 /// Resize image in terms of its pixel size.
51565149 /// </summary>
@@ -5168,6 +5161,13 @@ public void Resample(double resolutionX, double resolutionY)
51685161 public void Resample ( PointD density )
51695162 => Resample ( density . X , density . Y ) ;
51705163
5164+ /// <summary>
5165+ /// Resets the page property of this image.
5166+ /// </summary>
5167+ /// <exception cref="MagickException">Thrown when an error is raised by ImageMagick.</exception>
5168+ public void ResetPage ( )
5169+ => Page = new MagickGeometry ( 0 , 0 , 0 , 0 ) ;
5170+
51715171 /// <summary>
51725172 /// Resize image to specified size.
51735173 /// <para />
0 commit comments