We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad76bcc commit 81385acCopy full SHA for 81385ac
src/ImageSharp.Drawing/Processing/Processors/Text/DrawTextProcessor{TPixel}.cs
@@ -325,6 +325,11 @@ public void EndGlyph()
325
{
326
IPath path = this.builder.Build();
327
328
+ if (path.Bounds.Equals(RectangleF.Empty))
329
+ {
330
+ return;
331
+ }
332
+
333
// if we are using the fonts color layers we ignore the request to draw an outline only
334
// cause that wont really work and instead force drawing with fill with the requested color
335
// if color fonts disabled then this.currentColor will always be null
0 commit comments