@@ -451,8 +451,8 @@ public void CanRotateFilledFont_Issue175<TPixel>(
451
451
AffineTransformBuilder builder = new AffineTransformBuilder ( ) . AppendRotationDegrees ( angle ) ;
452
452
453
453
RichTextOptions textOptions = new ( font ) ;
454
- FontRectangle bounds = TextMeasurer . MeasureSize ( text , textOptions ) ;
455
- Matrix3x2 transform = builder . BuildMatrix ( Rectangle . Round ( new RectangleF ( bounds . X , bounds . Y , bounds . Width , bounds . Height ) ) ) ;
454
+ FontRectangle advance = TextMeasurer . MeasureAdvance ( text , textOptions ) ;
455
+ Matrix3x2 transform = builder . BuildMatrix ( Rectangle . Round ( new RectangleF ( advance . X , advance . Y , advance . Width , advance . Height ) ) ) ;
456
456
457
457
provider . RunValidatingProcessorTest (
458
458
x => x . SetDrawingTransform ( transform ) . DrawText ( textOptions , text , Color . Black ) ,
@@ -478,8 +478,8 @@ public void CanRotateOutlineFont_Issue175<TPixel>(
478
478
AffineTransformBuilder builder = new AffineTransformBuilder ( ) . AppendRotationDegrees ( angle ) ;
479
479
480
480
RichTextOptions textOptions = new ( font ) ;
481
- FontRectangle bounds = TextMeasurer . MeasureSize ( text , textOptions ) ;
482
- Matrix3x2 transform = builder . BuildMatrix ( Rectangle . Round ( new RectangleF ( bounds . X , bounds . Y , bounds . Width , bounds . Height ) ) ) ;
481
+ FontRectangle advance = TextMeasurer . MeasureAdvance ( text , textOptions ) ;
482
+ Matrix3x2 transform = builder . BuildMatrix ( Rectangle . Round ( new RectangleF ( advance . X , advance . Y , advance . Width , advance . Height ) ) ) ;
483
483
484
484
provider . RunValidatingProcessorTest (
485
485
x => x . SetDrawingTransform ( transform )
0 commit comments