-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unknown error with english path #30
Comments
Did you look at |
I printed def is_ascii(s):
return all(ord(c) < 128 for c in s)
with tempfile.NamedTemporaryFile(delete=True, dir=r'F:') as tmp:
print(is_ascii(tmp.name))
print(tmp.name)
jpg = jpegio.read(tmp.name) |
I have finished my job( generate dct array from a pic) using jpeg2dct. It does not cause memory on Linux platform. |
Glad you managed to find a workaround that worked for you. |
I have read #19 but It does not help me .
I am using windows11.
my code is as follows:
here is what I get:
I guess it has something to do with tempfile library?
The text was updated successfully, but these errors were encountered: