when i try to read text from test.jpg file with white background it works but when i try to read text from test2.jpg it doesn’t work. i am saving the file with C# code Image classs
byte[] imageBytes = Convert.FromBase64String(phoneTemp);
MemoryStream ms = new MemoryStream(imageBytes, 0, imageBytes.Length);
ms.Seek(0, SeekOrigin.Begin);
Bitmap bm = new Bitmap(ms);
string filePath = Application.StartupPath + “\PhoneNumbers\” + DateTime.Now.Ticks+ “.jpg”;
bm.Save(filePath);
bm.Dispose();