diff --git a/Text-Grab/Utilities/TesseractHelper.cs b/Text-Grab/Utilities/TesseractHelper.cs index ef410cc6..202f21fc 100644 --- a/Text-Grab/Utilities/TesseractHelper.cs +++ b/Text-Grab/Utilities/TesseractHelper.cs @@ -98,7 +98,7 @@ public static async Task GetTextFromImagePathAsync(string imagePath, Win .Add("-l") .Add(languageString) ) - .ExecuteBufferedAsync(); + .ExecuteBufferedAsync(Encoding.UTF8); return result.StandardOutput; }