@@ -117,18 +117,18 @@ public ICompareResult CalcDiff(SKBitmap pic1, SKBitmap pic2)
117117 /// <summary>
118118 /// Calculates the difference between two in-memory images represented as <see cref="SKBitmap"/> objects.
119119 /// </summary>
120- /// <param name="Pic1 "></param>
121- /// <param name="Pic2 "></param>
120+ /// <param name="pic1 "></param>
121+ /// <param name="pic2 "></param>
122122 /// <param name="differenceMaskPic"></param>
123123 /// <returns></returns>
124- public ICompareResult CalcDiff ( SKBitmap Pic1 , SKBitmap Pic2 , SKBitmap differenceMaskPic )
124+ public ICompareResult CalcDiff ( SKBitmap pic1 , SKBitmap pic2 , SKBitmap differenceMaskPic )
125125 {
126126 if ( CompareMetadata )
127127 {
128128 throw new NotSupportedException ( "Metadata comparison is not implemented for SKBitmap inputs. https://github.com/mono/SkiaSharp/issues/1139 Use the overload with streams or filepath to get support for metadata comparison." ) ;
129129 }
130130
131- return Compare . CalcDiff ( Pic1 , Pic2 , differenceMaskPic , ResizeOption , PixelColorShiftTolerance , TransparencyOptions ) ;
131+ return Compare . CalcDiff ( pic1 , pic2 , differenceMaskPic , ResizeOption , PixelColorShiftTolerance , TransparencyOptions ) ;
132132 }
133133
134134 /// <summary>
@@ -173,23 +173,23 @@ public ICompareResult CalcDiff(Stream pic1, Stream pic2, SKBitmap maskImage)
173173 /// <summary>
174174 /// Calculates a difference mask image that highlights the differences between two images located at the specified file paths.
175175 /// </summary>
176- /// <param name="PathPic1 "></param>
177- /// <param name="PathPic2 "></param>
176+ /// <param name="pathPic1 "></param>
177+ /// <param name="pathPic2 "></param>
178178 /// <returns></returns>
179- public SKBitmap CalcDiffMaskImage ( string PathPic1 , string PathPic2 )
179+ public SKBitmap CalcDiffMaskImage ( string pathPic1 , string pathPic2 )
180180 {
181- return Compare . CalcDiffMaskImage ( PathPic1 , PathPic2 , ResizeOption , PixelColorShiftTolerance , TransparencyOptions ) ;
181+ return Compare . CalcDiffMaskImage ( pathPic1 , pathPic2 , ResizeOption , PixelColorShiftTolerance , TransparencyOptions ) ;
182182 }
183183
184184 /// <summary>
185185 /// Calculates a difference mask image that highlights the differences between two in-memory images represented as <see cref="SKBitmap"/> objects.
186186 /// </summary>
187- /// <param name="Pic1 "></param>
188- /// <param name="Pic2 "></param>
187+ /// <param name="pic1 "></param>
188+ /// <param name="pic2 "></param>
189189 /// <returns></returns>
190- public SKBitmap CalcDiffMaskImage ( SKBitmap Pic1 , SKBitmap Pic2 )
190+ public SKBitmap CalcDiffMaskImage ( SKBitmap pic1 , SKBitmap pic2 )
191191 {
192- return Compare . CalcDiffMaskImage ( Pic1 , Pic2 , ResizeOption , PixelColorShiftTolerance , TransparencyOptions ) ;
192+ return Compare . CalcDiffMaskImage ( pic1 , pic2 , ResizeOption , PixelColorShiftTolerance , TransparencyOptions ) ;
193193 }
194194
195195 /// <summary>
@@ -242,12 +242,12 @@ public SKBitmap CalcDiffMaskImage(SKBitmap image1, SKBitmap image2, SKBitmap dif
242242 /// <summary>
243243 /// Checks if two images located at the specified file paths are identical, considering the configured options for resizing,
244244 /// </summary>
245- /// <param name="PathActual "></param>
246- /// <param name="PathExpected "></param>
245+ /// <param name="pathActual "></param>
246+ /// <param name="pathExpected "></param>
247247 /// <returns></returns>
248- public bool ImagesAreEqual ( string PathActual , string PathExpected )
248+ public bool ImagesAreEqual ( string pathActual , string pathExpected )
249249 {
250- return Compare . ImagesAreEqual ( PathActual , PathExpected , ResizeOption , PixelColorShiftTolerance , TransparencyOptions , CompareMetadata ) ;
250+ return Compare . ImagesAreEqual ( pathActual , pathExpected , ResizeOption , PixelColorShiftTolerance , TransparencyOptions , CompareMetadata ) ;
251251 }
252252
253253 /// <summary>
@@ -275,12 +275,12 @@ public bool ImagesAreEqual(SKBitmap actual, SKBitmap expected)
275275 /// <summary>
276276 /// Checks if two images have the same dimensions (width and height).
277277 /// </summary>
278- /// <param name="PathActual "></param>
279- /// <param name="PathExpected "></param>
278+ /// <param name="pathActual "></param>
279+ /// <param name="pathExpected "></param>
280280 /// <returns></returns>
281- public static bool ImagesHaveEqualSize ( string PathActual , string PathExpected )
281+ public static bool ImagesHaveEqualSize ( string pathActual , string pathExpected )
282282 {
283- return Compare . ImagesHaveEqualSize ( PathActual , PathExpected ) ;
283+ return Compare . ImagesHaveEqualSize ( pathActual , pathExpected ) ;
284284 }
285285 }
286286}
0 commit comments