John

Results 3 issues of John

I build a Python library(zbar.cpython-37m-darwin.so) with: python setup.py install And here is my code: ``` import zbar from PIL import Image def get_codes(image_path): # create a reader scanner = zbar.ImageScanner()...

* OS: OSX 11.6 * Python: 3.7.4 * Pillow: 9.1.1 ```python eps_file_path = "EPS_Bitmap.eps" # File was attached. img = Image.open(eps_file_path) print(img.mode, img.size) # RGB (90, 60) --> correct: L,...

Env: OSX10.12, Python 3.6.1 Code: ```py import pyxpdf ``` Error: ![error](https://user-images.githubusercontent.com/18019314/111238350-404dd580-863a-11eb-8666-ca779db7ce50.png) How can I fix this error? Thanks.