| | |
| | | } |
| | | |
| | | public static void main(String[] args) throws IOException { |
| | | String imagePath = "C:\\Users\\w\\Pictures\\Saved Pictures\\a.png"; |
| | | String imagePath = "C:\\Users\\w\\Pictures\\Camera Roll\\a.png"; |
| | | String extractedText = extractTextFromImage(imagePath); |
| | | System.out.println(extractedText); |
| | | System.out.println("============================================================"); |
| | | String imagePath1 = "C:\\Users\\w\\Pictures\\Saved Pictures\\b.png"; |
| | | String extractedText1 = extractTextFromImage(imagePath1); |
| | | System.out.println(extractedText1); |
| | | // String imagePath1 = "C:\\Users\\w\\Pictures\\Saved Pictures\\b.png"; |
| | | // String extractedText1 = extractTextFromImage(imagePath1); |
| | | // System.out.println(extractedText1); |
| | | } |
| | | } |
| | | |