我有一个用于转换为图像格式的 PDF 图像,因此我正在尝试读取 PDF 图像并将数据存储在文本文件中。
import pytesseract
from PIL import Image
img = Image.open('1.pdf')
text = pytesseract.image_to_string(img)
with open('1.txt', mode='w') as file:
file.write(text)
当我运行它时,我得到了错误can't set attribute