Skip to content

Commit

Permalink
Update refs to latest stable.
Browse files Browse the repository at this point in the history
  • Loading branch information
JimBobSquarePants committed Dec 1, 2023
1 parent 0ccf070 commit 2b08c85
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions articles/imagesharp/imageformats.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ using (var image = Image.Load(inputStream))
- `image.SaveAsTga()` (shortcut for `image.Save(new TgaEncoder())`)
- `image.SaveAsTiff()` (shortcut for `image.Save(new TiffEncoder())`)
- `image.SaveAsWebp()` (shortcut for `image.Save(new WebpEncoder())`)
- `image.SaveAsQoi()` (shortcut for `image.Save(new QoiEncoder())`)

### A Deeper Overview of ImageSharp Format Management

Expand Down
2 changes: 1 addition & 1 deletion ext/ImageSharp
Submodule ImageSharp updated 584 files
2 changes: 1 addition & 1 deletion ext/ImageSharp.Drawing
Submodule ImageSharp.Drawing updated 18 files
+33 −7 src/ImageSharp.Drawing/Processing/GradientBrush.cs
+1 −1 src/ImageSharp.Drawing/Processing/Processors/Text/DrawTextProcessor{TPixel}.cs
+43 −33 src/ImageSharp.Drawing/Shapes/ArcLineSegment.cs
+0 −3 src/ImageSharp.Drawing/Shapes/PolygonClipper/BoundsF.cs
+9 −5 src/ImageSharp.Drawing/Shapes/PolygonClipper/PolygonOffsetter.cs
+34 −8 tests/ImageSharp.Drawing.Tests/Drawing/DrawLinesTests.cs
+39 −8 tests/ImageSharp.Drawing.Tests/Drawing/DrawPathTests.cs
+37 −1 tests/ImageSharp.Drawing.Tests/Drawing/Text/DrawTextOnImageTests.cs
+0 −9 tests/ImageSharp.Drawing.Tests/Shapes/PolygonClipper/ClipperTests.cs
+3 −0 tests/Images/ReferenceOutput/Drawing/DrawLinesTests/DrawLinesInvalidPoints_Rgba32_T(1).png
+3 −0 tests/Images/ReferenceOutput/Drawing/DrawLinesTests/DrawLinesInvalidPoints_Rgba32_T(1)_NoAntialias.png
+3 −0 tests/Images/ReferenceOutput/Drawing/DrawLinesTests/DrawLinesInvalidPoints_Rgba32_T(5).png
+3 −0 tests/Images/ReferenceOutput/Drawing/DrawLinesTests/DrawLinesInvalidPoints_Rgba32_T(5)_NoAntialias.png
+3 −0 tests/Images/ReferenceOutput/Drawing/DrawPathTests/DrawCircleUsingAddArc_359.png
+3 −0 tests/Images/ReferenceOutput/Drawing/DrawPathTests/DrawCircleUsingAddArc_360.png
+3 −0 tests/Images/ReferenceOutput/Drawing/DrawPathTests/DrawCircleUsingArcTo_False.png
+3 −0 tests/Images/ReferenceOutput/Drawing/DrawPathTests/DrawCircleUsingArcTo_True.png
+3 −0 tests/Images/ReferenceOutput/Drawing/Text/DrawTextOnImageTests/CanRenderTextOutOfBoundsIssue301.png

0 comments on commit 2b08c85

Please sign in to comment.