Skip to content

Commit

Permalink
make private
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianMindee committed Oct 7, 2024
1 parent 3ad3bf9 commit de42ebe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Mindee/Pdf/PdfUtils.cs
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public static SKBitmap GeneratePageBitmap(int imageQuality, IPageReader pageRead
/// <param name="bitmap">The input bitmap.</param>
/// <param name="character">The currently read character.</param>
/// <param name="canvas">The canvas of the page to insert the bitmap into.</param>
public static void WriteTextToCanvas(SKBitmap bitmap, Character character, SKCanvas canvas)
private static void WriteTextToCanvas(SKBitmap bitmap, Character character, SKCanvas canvas)
{
using var paint = new SKPaint();
SKColor textColor = ImageUtils.InferTextColor(bitmap, character.Box);
Expand Down

0 comments on commit de42ebe

Please sign in to comment.