Find the image magnification algorithm of WIN10's own photo viewer or light and shadow view or Mac's own preview tool.

when using tesseract character recognition, it is found that if the enlarged picture recognition is used, the wrong text recognition will get the correct result. The image magnification algorithm of WIN10 with photo viewer or light and shadow view or Mac"s own preview tool is not a simple zoom picture, but is optimized with image quality improvement. If you know this algorithm, you can improve the correct rate of text recognition and realize text recognition on a single machine. Does anyone know what algorithm is used

from PIL import Image
import pytesseract
path = r"D:\ocr.bmp"
for p in range(4,14):
    text = pytesseract.image_to_string(Image.open(path), config="--psm {}".format(p),lang="chi_sim")
    print(str(p)+" : "+text)
    

reference question: https://codeshelper.com/q/10.

MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b32297-2b56c.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b32297-2b56c.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?