Skip to content

Commit c8ae268

Browse files
Merge pull request #326 from SixLabors/js/update-refs
Update Fonts to v2.0.3 and ImageSharp to v3.1.4
2 parents 6b62e73 + 6bca16c commit c8ae268

6 files changed

+14
-14
lines changed

src/ImageSharp.Drawing/ImageSharp.Drawing.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@
4545
<None Include="..\..\shared-infrastructure\branding\icons\imagesharp.drawing\sixlabors.imagesharp.drawing.128.png" Pack="true" PackagePath="" />
4646
</ItemGroup>
4747
<ItemGroup>
48-
<PackageReference Include="SixLabors.Fonts" Version="2.0.1" />
49-
<PackageReference Include="SixLabors.ImageSharp" Version="3.1.3" />
48+
<PackageReference Include="SixLabors.Fonts" Version="2.0.3" />
49+
<PackageReference Include="SixLabors.ImageSharp" Version="3.1.4" />
5050
</ItemGroup>
5151
<Import Project="..\..\shared-infrastructure\src\SharedInfrastructure\SharedInfrastructure.projitems" Label="Shared" />
5252
</Project>

tests/ImageSharp.Drawing.Tests/Drawing/Text/DrawTextOnImageTests.cs

+4-4
Original file line numberDiff line numberDiff line change
@@ -451,8 +451,8 @@ public void CanRotateFilledFont_Issue175<TPixel>(
451451
AffineTransformBuilder builder = new AffineTransformBuilder().AppendRotationDegrees(angle);
452452

453453
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)));
456456

457457
provider.RunValidatingProcessorTest(
458458
x => x.SetDrawingTransform(transform).DrawText(textOptions, text, Color.Black),
@@ -478,8 +478,8 @@ public void CanRotateOutlineFont_Issue175<TPixel>(
478478
AffineTransformBuilder builder = new AffineTransformBuilder().AppendRotationDegrees(angle);
479479

480480
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)));
483483

484484
provider.RunValidatingProcessorTest(
485485
x => x.SetDrawingTransform(transform)

0 commit comments

Comments
 (0)