diff --git a/cutting.py b/cutting.py index b76a8de..ebfe749 100644 --- a/cutting.py +++ b/cutting.py @@ -2,13 +2,20 @@ import os print("starting the pruning process") scanning = "scanimage --resolution 300 --mode color --format png > image.png" os.system(scanning) -os.system("tesseract image.png text.txt -l eng") -fantasyname = open("text.txt.txt" , "r") +os.system("tesseract image.png image -l eng") +fantasyname = open("image.txt" , "r") fantasyname = fantasyname.readlines() -for line in fantasyname: - line = line.split(" ") - for l in line: - if l!="" or l != ['\n', '\r\n']: - print(l) - os.system("echo '"+l+"' > /dev/usb/lp0") +text = open("image.txt", "r").read() +print(text) +print("------") +lines = text.split("\n") +for line in lines: + dotprint = f'echo "{line}" > /dev/usb/lp0' + os.system(dotprint) +#for line in fantasyname: + #line = line.split(" ") + #for l in line: + #if l!="" or l != ['\n', '\r\n']: + #print(l) + #os.system("echo '"+l+"' > /dev/usb/lp0")