Skip to content

Commit

Permalink
Restore the default interpolation mode of the GDI+ rendererer
Browse files Browse the repository at this point in the history
- Set the default mode to InterpolationMode.Default
  • Loading branch information
paulushub committed Jan 14, 2024
1 parent 091f3a3 commit 54a9c47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Rendering/SvgRenderer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ private static Graphics CreateGraphics(Image image)
g.CompositingQuality = CompositingQuality.HighQuality;
g.TextRenderingHint = TextRenderingHint.AntiAlias;
g.TextContrast = 1;
g.InterpolationMode = InterpolationMode.NearestNeighbor;
g.InterpolationMode = InterpolationMode.Default;
return g;
}

Expand Down

0 comments on commit 54a9c47

Please sign in to comment.