Hello guys.  I recently saw some posts that Windows 10 provides OCR API. So I decided to create a UDF.
 
	 
 
	 
 
	What's UWPOCR?
 
	UWPOCR UDF is a simple library to use Universal Windows Platform Optical character recognition API.
 
	Features.
 
		Get Text From Image File.
	
	
		Get Text From GDI+ Bitmap.
	
	
		Easy to use.
	
	 Usage:
 
#include "..\UWPOCR.au3"
_Example()
Func _Example()
	Local $sOCRTextResult = _UWPOCR_GetText(FileOpenDialog("Select Image", @ScriptDir & "\", "Images (*.jpg;*.bmp;*.png;*.tif;*.gif)"))
	MsgBox(0,"",$sOCRTextResult)
EndFunc
	Get Words Rect(Example):
 
	 
	 
 
	More examples here.
 
	 
 
	Check UWPOCR UDF on GitHub.
 
	 
 
	Saludos